﻿/* ===== HERO ===== */
.hero-section {
    width: 100% !important;
    background: url("/Images/Home_Images/About.jpeg") center no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

    .hero-content h1 {
        font-size: 3rem;
        font-weight: 700;
    }

    .hero-content p {
        font-size: 1.3rem;
    }

/* ===== ABOUT ===== */
.section-title {
    color: #59861f;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-section p {
    color: #555;
    line-height: 1.9;
}

.about-logo {
    max-width: 300px;
    transition: transform 0.4s ease;
}

    .about-logo:hover {
        transform: translateY(-10px);
    }

/* ===== STATS ===== */
.stats-section {
    width: 100% !important;
    background-color: #59861f;
    padding: 60px 0;
    color: #fff;
}

    .stats-section h3 {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .stats-section p {
        margin-top: 10px;
        font-size: 1.1rem;
    }
