/* Global Styles */
body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #fffaf2;
    color: #1f3b4d;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    background: url('header-image.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 40, 60, 0.45);
}

.hero h1 {
    font-size: 3rem;
    z-index: 1;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 1.2rem;
    z-index: 1;
}

/* Navigation */
nav {
    background: #1f3b4d;
    padding: 10px;
    text-align: center;
}

nav a {
    color: #f4e7c6;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #ffffff;
}

/* Sections */
.section {
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
}

.section h2 {
    color: #1f3b4d;
    margin-bottom: 10px;
}

/* Video */
.video-container {
    text-align: center;
}

iframe {
    max-width: 100%;
    border-radius: 8px;
}

/* Footer */
footer {
    background: #1f3b4d;
    color: #f4e7c6;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}