/* Reusing consistent branding from about.html */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body { display: flex; flex-direction: column; font-family: 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #333; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

header { background: #fff; padding: 20px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; }
.logo { font-size: 1.5rem; font-weight: bold; color: #005f73; padding-left: 20px; }

.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #005f73; padding-right: 20px; }
nav ul { display: flex; list-style: none; padding-right: 20px; }
nav ul li { margin-left: 25px; }
nav ul li a { text-decoration: none; color: #333; font-weight: 600; transition: color 0.3s; }
nav ul li a:hover { color: #0a9396; }

/* Map Hero Section */
.hero-map { height: 40vh; width: 100%; background: #eee; }
.hero-map iframe { width: 100%; height: 100%; border: 0; }

main { flex: 1; padding: 60px 20px; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 900px; margin: 0 auto; }

h2 { color: #005f73; margin-bottom: 20px; }
.info-card { background: #f4f7f6; padding: 30px; border-radius: 12px; }
.hours-list { list-style: none; margin-top: 15px; }
.hours-list li { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid #ddd; }

footer { background-color: #005f73; color: white; padding: 30px 20px; text-align: center; }

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    nav ul { display: none; position: absolute; top: 70px; left: 0; width: 100%; background: #fff; flex-direction: column; text-align: center; box-shadow: 0 5px 10px rgba(0,0,0,0.1); padding: 20px 0; }
    nav ul.show { display: flex; }
    nav ul li { margin: 15px 0; }
    .location-grid { grid-template-columns: 1fr; }
}