﻿.about-page {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.hero-section {
    text-align: center;
    margin-bottom: 3rem;
}

    .hero-section h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--brown-primary);
    }

        .hero-section h1 span {
            color: var(--gold-accent);
        }

.subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-top: 0.5rem;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.offer-section .section-intro {
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* Hover effect for offer items */
.offer-item {
    background: var(--tan-bg);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
    /* 
        .offer-item:hover {
            background: linear-gradient(135deg, var(--green-accent), var(--gold-accent));
            color: black;
            transform: translateY(-6px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }
 */
    /*  .offer-item:hover h3,
            .offer-item:hover p {
                color: #fff;
            } */

    .offer-item .icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .offer-item h3 {
        font-size: 1.1rem;
        color: var(--brown-primary);
        margin-bottom: 0.5rem;
    }

.values-list {
    list-style: none;
    padding: 0;
}

    .values-list li {
        margin-bottom: 0.75rem;
        font-size: 1rem;
    }

.stats-highlight {
    text-align: center;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.impact-item {
    background: var(--green-light);
    padding: 1rem;
    border-radius: 0.75rem;
    color: white;
}

.impact-number {
    font-size: 2rem;
    font-weight: bold;
}

.contact-card p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-card h2 {
    color: var(--brown-primary);
}

.contact-info {
    margin-top: 1rem;
    line-height: 1.8;
}

@media (max-width: 600px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .card {
        padding: 1.5rem;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }
}
