/* why-us.css */

.page-header {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.feature-block {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-cream);
    border-radius: 12px;
    transition: 0.3s;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-block i {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.feature-block h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-block p {
    color: #666;
    line-height: 1.6;
}

.testimonial-section {
    margin-top: 80px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--earth-brown);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.testimonial-card h4 {
    text-align: right;
    color: var(--primary-green);
    font-size: 1rem;
}