/* --- 1. Global Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    /* Shadow Beige background for contrast */
    background-color: #E5E0D5; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- 2. The Absolute Center --- */
.landing-content {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- 3. The Unified Card --- */
.content-wrapper {
    /* Exact match for the background in your logoMAX image */
    background-color: #F4F1EA; 
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(42, 69, 137, 0.1);
    text-align: center;
    max-width: 90%;
    display: inline-block;
    animation: fadeIn 1s ease-in;
}

.hero-logo {
    /* Set to 50% of the screen height to leave room for the text */
    max-height: 50vh; 
    max-width: 100%;
    height: auto;
    width: auto;
    display: block;
    margin-bottom: 35px; /* Creates a clean gap */
    image-rendering: -webkit-optimize-contrast;
}

/* --- 4. The Link Styling --- */
.subscribe-overlay {
    z-index: 20;
}

.progress-link {
    color: #2A4589; 
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 3px solid #D47A4D; 
    padding-bottom: 2px;
    line-height: 1.6; /* Adds space between wrapped lines */
    display: inline-block; /* Helps the border wrap correctly */
    transition: all 0.3s ease;
}

.progress-link:hover {
    color: #D47A4D;
    border-bottom-color: #2A4589;
}

/* --- 5. Footer --- */
.simple-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    /* Navy Blue with transparency */
    color: rgba(42, 69, 137, 0.5); 
    font-size: 0.8rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .content-wrapper { 
        padding: 20px; 
        width: 85%; /* Gives the card some breathing room from screen edges */
    }
    .hero-logo { 
        max-height: 40vh; /* Shorter logo on mobile to prevent crowding */
        margin-bottom: 20px;
    }
    .progress-link { 
        font-size: 1.05rem; /* Slightly smaller text for better wrapping */
        line-height: 1.5;
    }
}