/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

header {
    background: #4bc8c6;
    color: white;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

header h1 {
    margin: 0;
    font-size: 3rem;
    text-align: center;
}

main {
    padding: 1rem;
}

#hours-map-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

#hours, #location {
    flex: 1;
    padding: 1rem;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

address p {
    margin: 0.3rem 0;
    line-height: 1.4;
}

iframe {
    width: 100%;
    height: 400px;
    border: none;
}

#hours a, #location a {
    color: #4bc8c6;
    text-decoration: none;
}

#hours a:hover, #location a:hover {
    text-decoration: underline;
}

#location h2 {
    margin-top: 0;
}

#hours h2, #hours h3 {
    margin-bottom: 0.2rem;
    margin-top: 0;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

table td {
    padding: 0.3rem 0;
    vertical-align: top;
}

table td:first-child {
    font-weight: bold;
    text-align: left;
    padding-right: 1rem;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 1rem;
    background: #f4f4f4;
    color: #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

footer a {
    color: #4bc8c6;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-content p {
    margin: 0;
}

.footer-attribution {
    color: #555;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    #hours-map-container {
        flex-direction: column;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
    }

    header h1 {
        margin-bottom: 0.5rem;
    }
}
