.work-with-us-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cooperation-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cooperation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.cooperation-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00430E 0%, #006b1a 100%);
    color: #ffffff;
}

.cooperation-card:nth-child(1) .cooperation-icon {
    background: linear-gradient(135deg, #00430E 0%, #006b1a 100%);
}

.cooperation-card:nth-child(2) .cooperation-icon {
    background: linear-gradient(135deg, #1e7e34 0%, #28a745 100%);
}

.cooperation-card:nth-child(3) .cooperation-icon {
    background: linear-gradient(135deg, #006b1a 0%, #1e7e34 100%);
}

.cooperation-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.cooperation-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.intro-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00430E;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.15rem;
    color: #6c757d;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
}

.cooperation-cta {
    background: #e7f5e7;
    border: 1px solid #cce7cc;
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1c6b1c;
    margin-bottom: 0.75rem;
}

.cta-text {
    color: #4f5b4f;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.cta-btn {
    background: #83BE62;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid #83BE62;
}

.cta-btn:hover {
    background: #6fa84a;
    border-color: #6fa84a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(131, 190, 98, 0.25);
    text-decoration: none;
}

.cta-btn-outline {
    background: transparent;
    color: #2f6a2f;
    border-color: #83BE62;
}

.cta-btn-outline:hover {
    background: #e0f1e0;
    color: #1c6b1c;
    border-color: #6fa84a;
}

.cta-note {
    color: #4f5b4f;
    font-size: 0.95rem;
}

.cooperation-btn {
    background: #83BE62;
    color: #ffffff;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: all 0.3s ease;
    border: 2px solid #83BE62;
    margin-top: auto;
}

.cooperation-btn:hover {
    background: #6fa84a;
    border-color: #6fa84a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(131, 190, 98, 0.25);
    text-decoration: none;
}

.cooperation-contact {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.cooperation-contact-title {
    font-weight: 600;
    color: #00430E;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.whatsapp-btn {
    background: #83BE62;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.whatsapp-btn:hover {
    background: #6fa84a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(131, 190, 98, 0.3);
    text-decoration: none;
}

.whatsapp-btn svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .cooperation-card {
        padding: 1.5rem;
    }
    
    .intro-section {
        padding: 2rem 1.5rem;
    }
    
    .cooperation-cta {
        padding: 1.25rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .cooperation-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}


