/* Intro Section */
.intro-section {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 50px auto;
    gap: 40px;
    text-align: left;
}

.intro-section img {
    width: 45%;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.intro-text {
    width: 50%;
}

.intro-text h2 {
    font-size: 2rem;
    color: #036308;
    margin-bottom: 15px;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    justify-content: center;
}

/* Location Card */
.location-card {
    display: block;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease-in-out;
    width: 100%;
    max-width: 300px;
}

.location-card:hover {
    transform: scale(1.03);
}

.location-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.location-card h3 {
    font-size: 1.5rem;
    color: #036308;
    margin-bottom: 10px;
}

/* Google Map Section */
.map-section {
    text-align: center;
    margin: 50px auto;
    max-width: 1000px;
}

.map-section h2 {
    font-size: 2rem;
    color: #036308;
    margin-bottom: 15px;
}

.map-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}
