:root {
    --primary-color: #36454F;
    --secondary-color: #488A99;
    --accent-color: #B8860B;
    --bg-light: #F5F5DC;
    --neutral-light: #E8E8E8;
    --text-primary: #36454F;
    --text-light: #666666;
    --header-bg: #36454F;
    --footer-bg: #36454F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Merriweather', 'Lora', serif;
    color: var(--text-primary);
    background-color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.container-lg {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header.bg-header {
    background-color: var(--header-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-custom {
    padding: 1rem 0;
}

.brand-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    margin-left: 1.5rem;
    padding: 0.5rem 0 !important;
    transition: color 0.2s ease-in-out;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffffff !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

footer.bg-footer {
    background-color: var(--footer-bg);
    color: #ffffff;
    margin-top: 6rem;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-style: italic;
    margin-top: 0.5rem;
}

.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-nav a {
    color: var(--secondary-color);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-policies {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-align: right;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(72, 138, 153, 0.1) 100%);
    padding: 120px 0;
    position: relative;
}

.hero-content h1 {
    color: #ffffff;
    line-height: 1.2;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-alt {
    background-color: var(--bg-light);
}

.section-divider {
    height: 1px;
    background-color: var(--neutral-light);
    margin: 60px 0;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header h2 {
    margin-top: 0;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 1rem auto 0;
}

.info-card {
    background: #ffffff;
    border: 1px solid var(--neutral-light);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.info-card:hover {
    box-shadow: 0 8px 16px rgba(72, 138, 153, 0.1);
    transform: translateY(-2px);
}

.info-card h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.info-card p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-light);
}

.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.content-block {
    padding: 1rem 0;
}

.list-styled {
    list-style: none;
    padding-left: 0;
}

.list-styled li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.list-styled li::before {
    content: '▸';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    top: -0.3rem;
}

.highlight-box {
    background-color: rgba(72, 138, 153, 0.08);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 2px;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--text-primary);
}

.emphasis-text {
    color: var(--accent-color);
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
    border-radius: 2px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
    text-decoration: none;
}

.cta-button-secondary {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.cta-button-secondary:hover {
    background-color: var(--accent-color);
    color: #ffffff;
}

.context-disclaimer {
    background-color: var(--bg-light);
    border: 1px solid var(--neutral-light);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 2px;
    font-size: 0.95rem;
}

.context-disclaimer h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.context-disclaimer p {
    margin-bottom: 0;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 1px solid var(--neutral-light);
    border-radius: 2px;
    padding: 0.75rem;
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: var(--text-primary);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(72, 138, 153, 0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: #ffffff;
    border: none;
    padding: 12px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn-submit:hover {
    background-color: var(--primary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.3s ease-in-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0 20px;
}

.cookie-text {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.cookie-btn-primary {
    background-color: var(--accent-color);
    color: #ffffff;
}

.cookie-btn-primary:hover {
    background-color: #9a7309;
}

.cookie-btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

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

.cookie-btn-link {
    background-color: transparent;
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-btn-link:hover {
    color: #ffffff;
}

.thank-you-container {
    text-align: center;
    padding: 100px 0;
    min-height: 60vh;
}

.thank-you-container h1 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.thank-you-container p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.back-button {
    display: inline-block;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .hero-section {
        padding: 60px 0;
    }

    .section {
        padding: 40px 0;
    }

    .two-column-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.5rem 0 !important;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-text {
        width: 100%;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    footer.bg-footer {
        margin-top: 3rem;
    }

    .footer-copyright {
        text-align: left;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .container-lg {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 1rem;
    }

    .section {
        padding: 30px 0;
    }

    .info-card {
        padding: 1.5rem;
    }

    .navbar-nav {
        margin-top: 1rem;
    }

    .brand-logo {
        font-size: 1.4rem;
    }
}
