/* ===============================
   Global Styles
   =============================== */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.5;
}
a {
    color: #003366;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
html {
    scroll-behavior: smooth;
}

/* ===============================
   Navigation Bar
   =============================== */
.navbar {
    background-color: #003366;
    color: #ffffff;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.logo {
    font-size: 1.4rem;
    font-weight: bold;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.2s ease;
}
.nav-links li a:hover {
    color: #ff6600;
}
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        flex-direction: column;
        background-color: #003366;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 15px;
        display: none;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .nav-links.show {
        display: flex;
    }
}

/* ===============================
   Header
   =============================== */
header {
    background-color: #003366;
    color: #ffffff;
    padding: 24px;
    text-align: center;
}
header h1 {
    font-size: 2.5rem;
    margin: 0;
}
header .tagline {
    font-size: 1.1rem;
    font-weight: 300;
    margin-top: 6px;
    opacity: 0.95;
}

/* ===============================
   Hero Section
   =============================== */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
}
.hero .overlay {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 40px 20px;
    border-radius: 10px;
    display: inline-block;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    animation: fadeUp 500ms ease-out both;
}
.hero h2 {
    font-size: 2.2rem;
    margin: 0 0 10px 0;
}
.hero p {
    font-size: 1.15rem;
    margin: 0 0 20px 0;
    opacity: 0.98;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===============================
   CTA Buttons
   =============================== */
.cta {
    display: inline-block;
    padding: 12px 22px;
    margin: 6px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
}
.cta.primary {
    background-color: #ff6600;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(255, 102, 0, 0.25);
}
.cta.secondary {
    background-color: #003366;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(0, 51, 102, 0.25);
}
.cta:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}
.cta:active {
    transform: translateY(0);
    box-shadow: none;
}

/* ===============================
   How It Works
   =============================== */
.how-it-works {
    padding: 48px 20px;
    background-color: #f0f4f8;
    text-align: center;
}
.how-it-works h3 {
    font-size: 1.8rem;
    margin-bottom: 22px;
    color: #003366;
}
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.step {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: 260px;
    text-align: left;
}
.step h4 {
    color: #003366;
    margin-bottom: 8px;
    font-size: 1.1rem;
}
.step p {
    margin: 0;
    color: #444;
}

/* ===============================
   Mission
   =============================== */
.mission {
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.mission h3 {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 15px;
}
.mission p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

/* ===============================
   Benefits
   =============================== */
.benefits {
    padding: 48px 20px;
    background-color: #f9f9f9;
    text-align: center;
}
.benefits h3 {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 30px;
}
.benefit-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.benefit {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: 220px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.benefit .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}
.benefit h4 {
    color: #003366;
    margin-bottom: 8px;
    font-size: 1.1rem;
}
.benefit p {
    font-size: 0.95rem;
    color: #555;
}

/* ===============================
   Final Call-to-Action
   =============================== */
.final-cta {
    background-color: #003366;
    color: #ffffff;
    text-align: center;
    padding: 50px 20px;
}
.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.95;
}
.final-cta .cta.primary {
    background-color: #ff6600;
    color: #ffffff;
    font-size: 1.1rem;
    padding: 14px 28px;
    box-shadow: 0 6px 14px rgba(255, 102, 0, 0.25);
}
.final-cta .cta.primary:hover {
    opacity: 0.9;
}

/* ===============================
   Contact Form
   =============================== */
.contact-form {
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}
.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #003366;
}
.contact-form p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #444;
}
.contact-form form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
}
.contact-form button {
    align-self: center;
    font-size: 1rem;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    background-color: #ff6600;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(255, 102, 0, 0.25);
}
.contact-form button:hover {
    opacity: 0.9;
}

/* ===============================
   Footer
   =============================== */
footer {
    background-color: #eeeeee;
    padding: 14px;
    text-align: center;
    font-size: 0.95rem;
    color: #333;
}
 /* ===============================
   Responsive Tweaks
   =============================== */
@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }
    .hero {
        padding: 64px 16px;
    }
    .hero h2 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1.05rem;
    }
    .step {
        width: 100%;
        max-width: 360px;
    }
    .benefit {
        width: 100%;
        max-width: 360px;
    }
}

@keyframes slideFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links.show {
    animation: slideFade 300ms ease-out both;
}

.flash-message {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 12px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

