* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #0b1623; /* dark navy */
    color: #ff8c2a;           /* deep orange */
    line-height: 1.6;
}

/* Layout */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem;
}

/* Header */
header {
    background-color: #0e1c2d;
    border-bottom: 2px solid #b0b0b0; /* silver */
}

header h1 {
    font-size: 2rem;
    letter-spacing: 0.04em;
}

.tagline {
    color: #cfcfcf;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Main */
main {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.status {
    font-weight: bold;
}

.muted {
    color: #a9a9a9;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

/* Services */
h2 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #b0b0b0;
    padding-bottom: 0.25rem;
}

.services {
    list-style: none;
    margin-bottom: 2rem;
}

.services li {
    margin-bottom: 0.5rem;
}

.services a {
    color: #ff8c2a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.services a:hover {
    border-bottom: 1px solid #ff8c2a;
}

/* Image */
.image-block {
    margin-top: 1.5rem;
}

.image-block img {
    max-width: 300px;
    border: 1px solid #b0b0b0;
    background-color: #111;
    padding: 4px;
}

/* Footer */
footer {
    background-color: #0e1c2d;
    border-top: 2px solid #b0b0b0; /* silver */
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #cfcfcf;
}

.footer-links nav a {
    margin-left: 1rem;
    color: #cfcfcf;
    text-decoration: none;
}

.footer-links nav a:hover {
    color: #ff8c2a;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 1.5rem auto;
    aspect-ratio: 16 / 9;
    border: 2px solid #c0c0c0;
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
