:root {
    --ink-navy: #0F1A2B;
    --white: #FFFFFF;
    --charcoal: #222426;
    --cool-gray: #F5F6F7;
    --muted-teal: #5E8F93;
    --brass: #B47E55;
    --success: #38a169;
    --warning: #B47E55;
    --error: #e53e3e;
    --info: #5E8F93;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--charcoal);
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: padding-bottom 0.5s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header {
    padding: 2rem 0;
}

.logo {
    width: 300px;
    height: auto;
}

.divider {
    border: none;
    border-top: 1px solid var(--muted-teal);
    margin: 0;
}

.main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero {
    padding: 4rem 0;
}

.hero__title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-navy);
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    text-align: center;
}

.btn--primary {
    background-color: var(--muted-teal);
    color: var(--white);
}

.btn--primary:hover {
    background-color: #4a7b7e;
}

.btn--outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    flex-shrink: 0;
}

.btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer {
    background-color: var(--cool-gray);
    color: var(--charcoal);
    padding: 2rem 0;
    text-align: center;
    font-size: 14px;
}

.footer p {
    margin: 0.5rem 0;
}

.footer__links {
    margin-top: 1rem;
}

.footer__links a {
    color: var(--muted-teal);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer__links a:hover {
    text-decoration: underline;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    text-align: left;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--muted-teal);
    color: var(--white);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    z-index: 1001;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease, bottom 0.5s ease;
    box-sizing: border-box;
}

.cookie-banner.hidden {
    opacity: 0;
    visibility: hidden;
    bottom: -100px; /* Animate off screen */
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    flex-grow: 0;
}

.cookie-link {
    color: var(--white);
    text-decoration: underline;
}

.cookie-link:hover {
    text-decoration-thickness: 2px;
}


/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .logo {
        width: 250px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
    }

    .btn--outline {
        width: auto;
        max-width: none;
    }
}