/* Main CSS for general styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 80px; /* Space for fixed navbar */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.site-header {
    background-image: url('/img/header-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 200px; /* Smaller header */
}

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

h1 {
    text-align: center;
    margin-bottom: 20px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
        padding-bottom: 50px;
    }
    iframe {
        height: 300px;
    }
    .site-header {
        height: 200px;
    }
    h1 {
        font-size: 1.5rem;
    }
}

/* Footer styles */
footer {
    width: 100%;
    background-color: #f8f9fa;
    font-size: 0.875rem; /* Smaller font */
    height: 50px;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 40px;
}