/* Location-specific styles */

/* Page background */
.locations-page .about-main {
    background-color: #95a6f7; 
}

/* Base font for locations page */
.locations-page {
    font-family: Arial, sans-serif;
}

.locations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.location-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #2e0478;
    padding-bottom: 5px;
}

.location-item:last-child {
    border-bottom: none;
}

.location-header {
    background-color: #8591d7;
    padding: 8px 15px;
    margin-bottom: 10px;
    border-left: 4px solid #4285f4;
    border: 1px solid #2e0478;  /* Add this for a border all around */
}

.location-header h2 {
    margin: 0 0 5px 0;
    color: #040404;
    font-family: Georgia, serif;
    font-size: 1.2em;
}

.location-header p {
    margin: 0;
    color: #040404;
    font-family: Arial, sans-serif;
    font-size: 1.10em;
}

.location-header p {
    margin: 0;
    color: #040404;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.location-details {
    padding: 5px;
}

.location-details h3 {
    color: #040404;
    font-family: Georgia, serif;
    font-size: 1.1em;
    margin-bottom: 10px;
    border-bottom: 1px solid #2e0478;
    padding-bottom: 1px;
}

.address-info p {
    margin: 1px 0;
    line-height: 1.4;
    color: #040404;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 350px;
    border: 2px solid #2e0478;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
}
