:root {
    --primary-color: #2f855a;
    --secondary-color: #38a169;
    --accent-color: #48bb78;
    --light-bg: #f0fff4;
    --text-color: #2d3748;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--light-bg);
    color: var(--text-color);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}




/* Responsive Adjustments */
@media (max-width: 992px) {
.logo {
width: 50px;
height: 50px;
}
}

@media (max-width: 768px) {
.logo {
width: 45px;
height: 45px;
}
}

@media (max-width: 576px) {
.logo {
width: 40px;
height: 40px;
}
}


/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 500px;
    border-radius: 15px;
    margin-right: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--light-bg);
    transform: translateY(-5px);
}

/* Sections */
.section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--accent-color);
}

/* Stats */
.stats {
    display: flex;
    justify-content: space-around;
    background-color: white;
    padding: 50px 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #48bb78;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    text-align: left;
    padding: 0 20px;
    color: white;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .hero, .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        max-width: 100%;
        margin-top: 30px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}

.mission-vision-container {
display: flex;
gap: 30px;
justify-content: center;
margin-top: 40px;
}

@media (max-width: 992px) {
.mission-vision-container {
    flex-direction: column;
    gap: 20px;
}
}

.vision-box, .mission-box {
flex: 1;
max-width: 100%;
background: white;
padding: 40px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}

@media (max-width: 576px) {
.vision-box, .mission-box {
    padding: 25px;
}
}

@media (max-width: 480px) {
.vision-box, .mission-box {
    padding: 20px;
}
}

.vision-box:hover, .mission-box:hover {
transform: translateY(-10px);
}

.icon-wrapper {
width: 80px;
height: 80px;
background: var(--light-bg);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}

@media (max-width: 576px) {
.icon-wrapper {
    width: 60px;
    height: 60px;
}
}

.icon-wrapper i {
font-size: 32px;
color: var(--primary-color);
}

@media (max-width: 576px) {
.icon-wrapper i {
    font-size: 24px;
}
}

.vision-box h3, .mission-box h3 {
color: var(--primary-color);
font-size: 24px;
margin-bottom: 20px;
text-transform: uppercase;
letter-spacing: 1px;
}

@media (max-width: 768px) {
.vision-box h3, .mission-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}
}

@media (max-width: 480px) {
.vision-box h3, .mission-box h3 {
    font-size: 20px;
}
}

.vision-box p, .mission-box p {
color: var(--text-color);
line-height: 1.8;
font-size: 16px;
}

@media (max-width: 576px) {
.vision-box p, .mission-box p {
    font-size: 15px;
    line-height: 1.6;
}
}

@media (max-width: 480px) {
.vision-box p, .mission-box p {
    font-size: 14px;
}
}