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