
.about-advantages-section,
.about-advantages-section * {
    box-sizing: border-box;
}

.about-advantages-section {
    max-width: 1692px;
    width: 100%;
    margin: 0 auto 60px auto;
    font-family: 'Open Sans', sans-serif;
}

.about-advantages-section .section-title {
    font-size: 30px;
    font-weight: 600;
    color: #383838;
    margin-bottom: 36px;
    line-height: 1.2;
}

.about-advantages-section .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-advantages-section .card {
    border: 1px solid #d9d9d9;
    border-radius: 30px;
    padding: 30px 30px 0 30px;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-advantages-section .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.about-advantages-section .card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
}

.about-advantages-section .card-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: #f2f7fe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 10px;
}

.about-advantages-section .card-icon svg {
    width: 80px;
    height: 80px;
    max-width: 100%;
    max-height: 100%;
}

.about-advantages-section .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #383838;
    line-height: 1.25;
    padding-top: 10px;
    margin: 0;
}

.about-advantages-section .card-description {
    font-size: 14px;
    font-weight: 500;
    color: #383838;
    line-height: 1.45;
    flex: 1;
    margin: 0 0 20px 0;
}

.about-advantages-section .card-tag {
    margin-top: auto;
    background: #f4f7fe;
    margin-left: -30px;
    margin-right: -30px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-advantages-section .card-tag svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.about-advantages-section .card-tag span {
    font-size: 16px;
    font-weight: 600;
    color: #0b50ad;
}

/* ==========================================================================
   Адаптивность (Responsive)
   ========================================================================== */
@media (max-width: 1400px) {
    .about-advantages-section .cards-grid {
        gap: 24px;
    }

    .about-advantages-section .card-title {
        font-size: 18px;
        margin-top: 10px;
    }

    .about-advantages-section .card-description {
        font-size: 14px;
    }

    .about-advantages-section .card-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }

    .about-advantages-section .card-icon svg {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 1024px) {
    .about-advantages-section .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-advantages-section .section-title {
        font-size: 36px;
        margin-bottom: 35px;
    }

    .about-advantages-section .card-title {
        font-size: 16px;
        margin-top: 5px;
    }

    .about-advantages-section .card-description {
        font-size: 14px;
    }

    .about-advantages-section .card-tag span {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .about-advantages-section .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-advantages-section .section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .about-advantages-section .card {
        min-height: auto;
        padding: 24px 24px 0 24px;
        border-radius: 20px;
    }

    .about-advantages-section .card-header {
        gap: 15px;
        margin-bottom: 20px;
    }

    .about-advantages-section .card-icon {
        width: 75px;
        height: 75px;
        min-width: 75px;
    }

    .about-advantages-section .card-icon svg {
        width: 70px;
        height: 70px;
    }

    .about-advantages-section .card-title {
        font-size: 20px;
        padding-top: 5px;
    }

    .about-advantages-section .card-description {
        font-size: 15px;
    }

    .about-advantages-section .card-tag {
        margin-left: -24px;
        margin-right: -24px;
        padding: 16px 24px;
    }

    .about-advantages-section .card-tag span {
        font-size: 15px;
    }
}