.cooperation-content-section {
    padding: 80px 0;
    background: #fff;
}

.cooperation-text {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    /* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); */
}

.cooperation-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

.cooperation-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.cooperation-text .highlight {
    color: #494cff;
    font-weight: 600;
}

.cooperation-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.cooperation-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cooperation-form-wrapper h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-align: center;
}

.cooperation-form-wrapper .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 5px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #494cff;
    box-shadow: 0 0 0 3px rgba(56, 53, 255, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    margin: 25px 0;
}

.checkbox-wrapper input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 4px;
}

.checkbox-wrapper label {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    color: #666;
}

.submit-button {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #494cff 0%, #91bcfb 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(56, 53, 255, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(56, 53, 255, 0.4);
}

.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefit-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #494cff;
    box-shadow: 0 15px 40px rgba(56, 53, 255, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #494cff 0%, #91bcfb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
    box-shadow: 0 10px 30px rgba(56, 53, 255, 0.3);
}

.benefit-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.benefit-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.section-heading-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-subheading-main {
    text-align: center;
    color: #494cff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .cooperation-form-wrapper {
        padding: 35px 25px;
    }

    .section-heading-main {
        font-size: 36px;
    }

    .cooperation-text {
        padding: 30px 20px;
    }
}
