/* ===== ДОПОЛНИТЕЛЬНЫЕ УСЛУГИ ===== */
.additional-services-section {
    margin: 80px 0;
}

.services-layout {
    display: flex;
    gap: 40px;
    align-items: stretch;
    flex-wrap: wrap;
}

.services-info {
    flex: 1;
    min-width: 250px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-info h2 {
    font-size: 56px;
    font-weight: 500;
    color: #433f45;
    line-height: 1.0;
    margin-bottom: 20px;
}

.services-note {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    flex: 1;
}

/*.services-header-actions {

    gap: 20px;
    flex-wrap: wrap;
    margin-top: auto;
}*/

/*.services-header-actions .link,*/
/*.services-header-actions .btn-small {*/
/*    display: inline-block;*/
/*    padding: 12px 30px;*/
/*    border-radius: 50px;*/
/*    text-decoration: none;*/
/*    font-weight: bold;*/
/*    font-size: 14px;*/
/*    transition: all 0.3s ease;*/
/*    text-align: center;*/
/*    min-width: 180px;*/
/*    cursor: pointer;*/
/*    flex: 1;*/
/*}*/

/*.services-header-actions .link {*/
/*    background: #a43ccf;*/
/*    color: white;*/
/*    border: 2px solid #a43ccf;*/
/*}*/

/*.services-header-actions .link:hover {*/
/*    background: #8a2eb8;*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 5px 15px rgba(164, 60, 207, 0.3);*/
/*}*/

/*.services-header-actions .btn-small {*/
/*    background: transparent;*/
/*    color: #a43ccf;*/
/*    border: 2px solid #a43ccf;*/
/*}*/

/*.services-header-actions .btn-small:hover {*/
/*    background: rgba(164, 60, 207, 0.05);*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 5px 15px rgba(164, 60, 207, 0.2);*/
/*}*/

.services-list {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-item {
    background: white;
    border-radius: 20px;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    flex-wrap: wrap;
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(164, 60, 207, 0.1);
}

.service-info {
    flex: 1;
    min-width: 150px;
}

.service-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #433f45;
    margin-bottom: 5px;
}

.service-info .service-note {
    font-size: 13px;
    color: #999;
    margin-bottom: 0;
    line-height: 1.4;
}

.service-price {
    font-size: 20px;
    font-weight: bold;
    color: #666;
    white-space: nowrap;
}

/* Адаптивность */
@media (max-width: 992px) {
    .services-layout {
        flex-direction: column;
        gap: 30px;
    }

    .services-info h2 {
        font-size: 48px;
    }

    .services-note {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .additional-services-section {
        margin: 60px 0;
    }

    .services-info h2 {
        font-size: 42px;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .service-price {
        font-size: 24px;
    }

    .services-header-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }

    .services-header-actions .link,
    .services-header-actions .btn-small {
        min-width: 100%;
        text-align: center;
        flex: 1;
    }

    /* КНОПКИ НА ВСЮ ШИРИНУ */
    .btn-openAdditionalServices,
    .btn-secondary {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .services-info h2 {
        font-size: 36px;
    }

    .services-note {
        font-size: 14px;
    }

    .service-info h3 {
        font-size: 16px;
    }

    .service-price {
        font-size: 20px;
    }

    .service-item {
        padding: 20px;
    }

    .services-header-actions .link,
    .services-header-actions .btn-small {
        min-width: 100%;
        padding: 12px 20px;
    }

    .btn-openAdditionalServices,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}