.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.section-title {
    text-align: center;
    margin: 40px 0;
    color: #2c5530;
    font-weight: bold;
}

.content-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.content-section:nth-child(even) {
    background-color: #fff;
}

.environment-card {
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.environment-card:hover {
    transform: translateY(-5px);
}

.environment-card img {
    height: 250px;
    object-fit: cover;
}

.stat-box {
    background-color: #2c5530;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.stat-box h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer {
    background-color: #2c5530;
    color: #fff;
    padding: 20px 0;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
    
    .section-title {
        margin: 20px 0;
    }
    
    .content-section {
        padding: 20px 0;
    }
    
    .environment-card img {
        height: 200px;
    }
} 