/* General Body and Layout */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000080; /* Deep blue background */
    color: #333;
    line-height: 1.6;
}

.page-wrapper {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 15px;
}

.main-content-area {
    background-color: #000080;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Header Styling */
.video-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.header-text {
    font-size: 2.2em;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.header-description {
    font-size: 1.1em;
    color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto;
}

/* ? Centered and Responsive Vimeo Embed */
.video-container-center {
    display: flex;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    background-color: #000;
    border-radius: 6px;
    margin-bottom: 30px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Related Content Section */
.related-content-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    text-align: center;
}

.related-content-section h2 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 25px;
}

.video-container {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    max-width: 300px;
    margin: 15px;
    padding: 15px;
    background-color: #000080;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out;
}

.video-container:hover {
    transform: translateY(-5px);
}

.video-container a {
    text-decoration: none;
    color: #000080;
    display: block;
}

.video-container img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    margin: 0 auto 10px auto;
}

.video-container figcaption {
    font-size: 0.95em;
    color: #000080;
}

/* Footer Styling */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid #eee;
    color: #888;
    font-size: 0.9em;
    background-color: #fcfcfc;
    border-radius: 0 0 8px 8px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .page-wrapper {
        margin: 10px auto;
        padding: 0 10px;
    }

    .main-content-area {
        padding: 15px;
    }

    .header-text {
        font-size: 1.8em;
    }

    .header-description {
        font-size: 1em;
    }

    .related-content-section h2 {
        font-size: 1.5em;
    }

    .video-container {
        max-width: 90%;
        margin: 10px auto;
    }

    .video-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .header-text {
        font-size: 1.5em;
    }

    .header-description {
        font-size: 0.95em;
    }

    .related-content-section h2 {
        font-size: 1.3em;
    }

    .video-container {
        padding