/* =========================================
   WHY CHOOSE NATUROPATHY - EXACT SCREENSHOT MATCH
   ========================================= */
.why-naturopathy-section {
    padding: 80px 0;
    background: #fcfefe;
    /* Very subtle light background */
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns fixed */
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.01);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(90, 172, 78, 0.1);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: #5aac4e;
    /* Solid Green Match */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(90, 172, 78, 0.2);
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.why-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}