/* --- Brand Color Variables (No Change) --- */
:root {
    --color-blue-primary: #002C77;   
    --color-teal-accent: #00B6AA;    
    --color-grey-secondary: #4F4F4F; 
    --color-white: #ffffff;
    --color-background: #ffffff;
    --color-text-light: #999999;     
    --color-error: #D8000C; 
}

/* --- Base & Mobile-First Styling --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Roboto', sans-serif; color: var(--color-grey-secondary);
    background-color: var(--color-background); line-height: 1.5; min-height: 100vh;
    text-align: center;
}
.landing-container {
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 50px);
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%; max-width: 600px;
    margin: 0 auto;
}

/* --- Logo Mark and Text Styles --- */
.logo-wrapper {
    margin-bottom: 10px; 
}

.logo {
    max-width: 70%; /* Mobile: Set to 70% of container max-width */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Primary Heading and Tagline styles removed */

.message {
    font-size: 1.0rem;
    max-width: 400px;
    margin: 40px 0; /* Add margin above and below the message */
}
.cta-button {
    font-family: 'Montserrat', sans-serif; display: inline-block; background-color: var(--color-teal-accent);
    color: var(--color-white); text-decoration: none; padding: 12px 24px; border-radius: 4px;
    font-size: 0.95rem; font-weight: 700; letter-spacing: 0.5px; transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: none; cursor: pointer;
}
.cta-button:hover { background-color: #00A398; box-shadow: 0 4px 10px rgba(0, 44, 119, 0.15); }

/* --- Form Specific Styles (Omitted for brevity) --- */
.form-section {
    width: 100%; max-width: 400px; padding: 20px; border-radius: 8px; background-color: #f7f7f7;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); display: none; 
}
.form-title { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--color-blue-primary); margin-bottom: 25px; font-size: 1.5rem; }
.form-group { text-align: left; margin-bottom: 15px; }
.form-group label { display: block; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--color-grey-secondary); margin-bottom: 5px; }
.form-group input, .form-group textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; font-family: 'Roboto', sans-serif; }
.form-group textarea { resize: vertical; }
.send-button { width: 100%; margin-top: 10px; padding: 15px; }
.back-button { width: 100%; background-color: #ccc; color: var(--color-grey-secondary); margin-top: 10px; padding: 12px; border: none; border-radius: 4px; cursor: pointer; font-family: 'Montserrat', sans-serif; font-weight: 600; transition: background-color 0.3s; }
.back-button:hover { background-color: #bbb; }
.error-message, .captcha-error-text { color: var(--color-error); margin-bottom: 15px; font-weight: 600; }
.success-message { padding: 40px; background-color: #e6f7ff; border: 1px solid #002c7733; border-radius: 8px; }
.success-message h2 { color: var(--color-teal-accent); }
.success-message .cta-button { margin-top: 20px; }


/* -------------------------------------- */
/* --- FOOTER STYLES (Position Fixed) --- */
/* -------------------------------------- */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    font-size: 0.8rem;
    color: var(--color-text-light);
    background-color: var(--color-white);
    border-top: 1px solid #eee; 
    z-index: 10;
}


/* --- Desktop/Tablet Adjustments --- */
@media (min-width: 601px) {
    .logo { 
        max-width: 500px; /* Desktop: Set max-width to 500px */
    }
    /* main-heading and tagline styles were removed */
    .cta-button { padding: 15px 30px; font-size: 1.1rem; }
}