/* ==========================================
   1. Global Resets & Typography
   ================================---------- */
* {
    box-sizing: border-box;
}

html {
    background-color: #0e1b2a;
    height: 100%;
}

body {
    background-color: #0e1b2a;
    color: #2b3e50;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.main-content {
    background-color: #ffffff;
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   2. Site Header & Navigation
   ================================---------- */
.site-header {
    background-color: #0e1b2a;
    border-bottom: 1px solid #243b55;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .site-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.site-brand a {
    color: #FFCC00;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.site-brand span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: #8fa3bc;
    letter-spacing: 1px;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.site-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-cta {
    background-color: #3178c6;
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-cta:hover {
    background-color: #255d9d;
}

/* ==========================================
   3. Page Hero Banners & Portrait Layout
   ================================---------- */
.page-header-section {
    background-color: #15263b;
    color: #ffffff;
    padding: 4rem 2rem;
    border-bottom: 1px solid #243b55;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: #8fa3bc;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-text h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
}

.hero-text p {
    font-size: 1.15rem;
    color: #8fa3bc;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.hero-portrait {
    text-align: center;
}

.hero-portrait img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* 5px Gold Accent Stripe */
.accent-stripe {
    height: 5px;
    background-color: #FFCC00;
    width: 100%;
}

/* ==========================================
   4. Main Content Area & Grid Components
   ================================---------- */
.content-section {
    padding: 4rem 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 6px;
    border: 1px solid #eae6df;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.card h3 {
    font-size: 1.3rem;
    color: #0e1b2a;
    margin-top: 0;
    margin-bottom: 1rem;
}

.card p, .card ul {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* ==========================================
   5. Footer Styling
   ================================---------- */
.site-footer {
    background-color: #0e1b2a;
    color: #8fa3bc;
    padding: 2rem 0;
    border-top: 1px solid #243b55;
    text-align: center;
    font-size: 0.9rem;
    margin-top: auto;
}

/* ==========================================
   6. Urgency Notice Box Styling
   ================================---------- */
.urgency-notice-box {
    background-color: #15263b; /* Matches site header dark blue */
    color: #ffffff;
    padding: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
    border-left: 5px solid #FFCC00; /* Gold accent on the side */
}

.urgency-notice-icon {
    font-size: 30px;
    margin-right: 20px;
    color: #FFCC00; /* Gold icon */
    flex-shrink: 0; /* Prevents icon from squishing */
}

.urgency-notice-text h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.urgency-notice-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #e0e0e0; /* Slightly off-white for better readability */
}

/* ==========================================
   7. Responsive Media Queries
   ================================---------- */
@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .hero-text {
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.2rem !important;
    }
    .hero-portrait img {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .site-header-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding: 0 1.5rem;
    }
    
    .site-nav ul {
        flex-wrap: wrap;
        gap: 1rem 1.25rem;
    }

    /* Stack elements in the urgency box for small screens */
    .urgency-notice-box {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 5px solid #FFCC00;
    }

    .urgency-notice-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}