/* General Layout */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 15px; /* Compact padding */
    background-color: #f0f4f8;
    color: #333;
    overflow-y: hidden; /* Prevents main page scroll */
}

.header-container { text-align: center; margin-bottom: 15px; }
h2 { color: #004a99; font-size: 1.8em; margin-bottom: 5px; }
.underline { height: 4px; width: 80px; background-color: #ff6600; margin: 0 auto; border-radius: 2px; }

/* Compact Navigation Menu */
.vertical-nav {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    gap: 12px; /* Tight gap to fit all 6 items */
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 40px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.cta-text {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 4px;
    font-style: italic;
    text-align: center;
}

.play-btn {
    background-color: #004a99;
    color: white;
    border: none;
    padding: 10px 0;
    width: 300px; /* Standard width from images */
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.2s ease;
    box-shadow: 0 3px 5px rgba(0, 74, 153, 0.15);
}

.play-btn:hover {
    background-color: #003366;
    transform: scale(1.02);
}

/* Modal Overlay Styling */
.video-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.video-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    position: relative;
    max-height: 95vh;
    overflow-y: auto;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #ff6600;
    color: white;
    border: none;
    font-size: 24px;
    font-weight: bold;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

video { width: 100%; border-radius: 8px; margin: 10px 0; background: #000; }
.description-box { padding: 15px; border-left: 4px solid #004a99; text-align: justify; font-size: 0.9em; line-height: 1.5; }
