body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
}
.container {
    display: flex;
    height: 100vh;
}
.map-container {
    flex: 1;
    min-width: 50%;
    height: 100%;
}
#map {
    height: 100%;
    width: 100%;
}
.info-container {
    flex: 1;
    min-width: 50%;
    padding: 20px;
    overflow-y: auto;
    background-color: #f5f5f5;
}
.office-info {
    display: none;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.office-info h2 {
    color: #2c3e50;
    margin-top: 0;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}
.image-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    margin: 15px 0;
    padding-bottom: 10px;
}
.image-container img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.image-container img:hover {
    transform: scale(1.05);
}
p, ul, li {
    line-height: 1.6;
    color: #333;
}
ul {
    padding-left: 20px;
}
.title-container {
    margin-bottom: 20px;
}
.title-container h1 {
    color: #2c3e50;
    margin-bottom: 5px;
}
.title-container p {
    color: #7f8c8d;
    margin-top: 0;
}
.instruction {
    background-color: #e8f4f8;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #3498db;
}
.contact-info {
    background-color: #f8f9fa;
    border-left: 4px solid #28a745;
    padding: 15px;
    margin-top: 15px;
    border-radius: 4px;
}
.missions-section {
    margin-top: 15px;
    background-color: #fff8e1;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #ffa000;
}
.missions-section h4 {
    margin-top: 0;
    color: #795548;
}
.legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
}
.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
}
