section.why_choose_section {
    background: var(--primary-dark);

    .why_choose_banner {
        position: relative;
        height: 400px;
        background-image: url('../assets/img/homepage/why-choose-us.jpeg');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .banner_overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
    }

    .banner_content {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .banner_label {
        color: white;
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .banner_title {
        color: white;
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .banner_intro {
        color: rgba(255, 255, 255, 0.75);
        font-size: 1rem;
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
    }

    .features_grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        background: var(--secondary-dark);
        border-bottom: 3px solid var(--gold-accent);
        margin-bottom: 30px;
    }

    .feature_box {
        padding: 40px 30px;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.1);

        &:last-child {
            border-right: none;
        }

        h5 {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .feature_desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }
    }

    .feature_check {
        color: var(--gold-accent);
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .cta_banner {
        background: var(--primary-dark);
        text-align: center;
    }

    .cta_label {
        color: #999;
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .cta_content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta_phone {
        color: var(--gold-accent);
        font-size: 3rem;
        font-weight: 700;
        font-family: 'Inter', sans-serif;

        a {
            color: var(--gold-accent);
            text-decoration: none;
            transition: color 0.3s ease;

            &:hover {
                color: #f0c654;
            }
        }
    }

    @media (max-width: 768px) {
        .features_grid {
            grid-template-columns: 1fr;
        }

        .feature_box {
            border-right: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);

            &:last-child {
                border-bottom: none;
            }
        }

        .banner_title {
            font-size: 2rem;
        }

        .cta_phone {
            font-size: 2rem;
        }
    }

    @media (max-width: 992px) {
        .features_grid {
            grid-template-columns: 1fr;
        }
    }
}