.why-choose-us {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-peach) 100%); /* Clean white background */
    text-align: center;
}

/* Header Styling */
.why-choose-us .choose-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.why-choose-us .choose-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.why-choose-us .choose-header .highlight-teal {
    color: #fcc300; /* Deep Navy Blue for a premium look */
    position: relative;
}

.why-choose-us .choose-header .subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 300;
}

/* Benefit Grid (3 columns) */
.why-choose-us .benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

/* Benefit Card Styling */
.why-choose-us .benefit-card {
    background-color: #ffffff; /* Light off-white background for definition */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.why-choose-us .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Icon Styling - Match Philosophy Section */
.why-choose-us .benefit-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #ffffff;
}

/* Individual Icon Colors */
.why-choose-us .benefit-icon.icon-red { background-color: #e57373; }
.why-choose-us .benefit-icon.icon-blue { background-color: #4fc3f7; }
.why-choose-us .benefit-icon.icon-green { background-color: #81c784; }
.why-choose-us .benefit-icon.icon-purple { background-color: #ba68c8; }
.why-choose-us .benefit-icon.icon-yellow { background-color: #ffb74d; }
.why-choose-us .benefit-icon.icon-teal { background-color: #4db6ac; }


/* Card Content */
.why-choose-us .benefit-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fcc300; /* Navy Blue title */
    margin-bottom: 8px;
}

.why-choose-us .benefit-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

/* Trust Badge/Statistic Styling */
.why-choose-us .trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background-color: var(--brand-yellow); /* Soft Pink/Red for attention */
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.why-choose-us .trust-badge i {
    font-size: 1.5rem;
    color: #ffffff; /* Deep Pink icon */
    margin-right: 15px;
}

.why-choose-us .trust-badge p {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}

.why-choose-us .trust-badge span {
    font-weight: 700;
    color: #ffffff;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .why-choose-us .benefit-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablets */
    }
}

@media (max-width: 768px) {
    .why-choose-us .choose-header h2 {
        font-size: 2.2rem;
    }

    .why-choose-us {
        padding: 4rem 2rem;
    }
}

@media (max-width: 640px) {
    .why-choose-us {
        padding: 3rem 1.5rem;
    }

    .why-choose-us .trust-badge {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .why-choose-us .benefit-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }
    .why-choose-us .choose-header h2 {
        font-size: 2rem;
    }
}