/* Global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 60, 0, 0.65), rgba(0, 60, 0, 0.65)),
                url("images/WhatsApp Image 2026-02-10 at 6.12.14 PM.jpeg") center/cover no-repeat;
    color: #ffffff;
    padding: 80px 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-hero .hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Main About Content */
.about-container {
    padding: 60px 10%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
}

.about-text h2 {
    font-size: 1.7rem;
    color: #2e7d32;
    margin-bottom: 10px;
    margin-top: 25px;
}

.about-text p {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #444;
}

/* Call to Action */
.about-cta {
    padding: 50px 10%;
    text-align: center;
    background-color: #2e7d32;
    color: #ffffff;
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.about-cta p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: #ffffff;
    color: #2e7d32;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.15s ease;
}

.cta-button:hover {
    background-color: #c8e6c9;
    color: #1b5e20;
    transform: translateY(-1px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 7%;
    }

    .about-hero .hero-content h1 {
        font-size: 2.1rem;
    }

    .about-container {
        padding: 40px 7%;
    }

    .about-cta {
        padding: 40px 7%;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .about-cta h2 {
        font-size: 1.6rem;
    }
}
