.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f8 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--secondary-color) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.05;
}

.why-choose-us .container {
    display: block; /* Override flex container */
    position: relative;
    z-index: 1;
}

/* Animated Title Effect */
.animated-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    animation: colorBlink 3s infinite ease-in-out;
    letter-spacing: -1px;
}

@keyframes colorBlink {
    0% { color: var(--primary-color); }
    33% { color: var(--secondary-color); }
    66% { color: #e74c3c; /* Accent Red */ }
    100% { color: var(--primary-color); }
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #4b5e71;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(26, 26, 64, 0.1);
    border-color: rgba(255, 153, 51, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    color: var(--secondary-color);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 18px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.1);
}

.benefit-card:hover .benefit-icon {
    background: var(--secondary-color);
    color: #fff;
    transform: rotateY(360deg);
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 15px;
    color: #6a7c92;
    line-height: 1.7;
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .animated-title {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .animated-title {
        font-size: 30px;
    }
    .why-choose-us {
        padding: 60px 0;
    }
}

@media screen and (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .benefit-card {
        padding: 20px 15px;
    }
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    .benefit-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .benefit-card p {
        font-size: 12px;
        line-height: 1.5;
    }
    .animated-title {
        font-size: 26px;
    }
}
