:root {
    --sage-green: #8B9A7D;
    --sage-light: #A8B89C;
    --sage-dark: #6B7A5D;
    --text-primary: #2C3E2D;
    --text-secondary: #5A6B5C;
    --text-muted: #7A8B7C;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F7F4;
    --bg-tertiary: #EEF1EC;
    --border-color: #D4DDD2;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.625rem;
    margin-top: 2.5rem;
}

h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

a {
    color: var(--sage-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.navbar {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--sage-dark);
    letter-spacing: 0.5px;
}

.navbar-brand:hover {
    color: var(--sage-green);
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--sage-dark);
}

.navbar-toggler {
    border: 1px solid var(--border-color);
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%236B7A5D' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

main {
    padding-top: 80px;
}

.section {
    padding: 3rem 0;
}

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

.hero-section {
    padding: 4rem 0;
    background-color: var(--bg-secondary);
}

.hero-section h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.hero-image {
    border-radius: 4px;
    margin-top: 2rem;
}

.content-block {
    margin-bottom: 2rem;
}

.content-image {
    border-radius: 4px;
    margin: 1.5rem 0;
}

.two-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.disclaimer-block {
    background-color: var(--bg-tertiary);
    border-left: 3px solid var(--sage-green);
    padding: 1.5rem;
    margin: 2rem 0;
}

.disclaimer-block p {
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.disclaimer-block p:last-child {
    margin-bottom: 0;
}

.context-block {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.context-block h3 {
    color: var(--sage-dark);
    margin-top: 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.contact-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-primary);
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--sage-green);
}

.btn-sage {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--sage-green);
    color: var(--bg-primary);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-sage:hover {
    background-color: var(--sage-dark);
    color: var(--bg-primary);
    text-decoration: none;
}

.cta-section {
    text-align: center;
    padding: 3rem 0;
    background-color: var(--bg-tertiary);
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.footer {
    background-color: var(--text-primary);
    color: var(--bg-secondary);
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

.footer h4 {
    color: var(--bg-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer p {
    color: var(--sage-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--sage-light);
    font-size: 0.875rem;
}

.footer a:hover {
    color: var(--bg-primary);
}

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

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

.footer-bottom {
    border-top: 1px solid var(--sage-dark);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-primary);
    color: var(--bg-secondary);
    padding: 1rem;
    z-index: 1001;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-content p {
    color: var(--bg-secondary);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    background-color: var(--sage-green);
    color: var(--bg-primary);
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
}

.page-header {
    background-color: var(--bg-secondary);
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.policy-content {
    max-width: 800px;
}

.policy-content h2 {
    margin-top: 2rem;
}

.policy-content h3 {
    margin-top: 1.5rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.about-image {
    border-radius: 4px;
    margin: 1.5rem 0;
}

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

    h2 {
        font-size: 1.875rem;
    }

    h3 {
        font-size: 1.375rem;
    }

    .hero-section {
        padding: 5rem 0;
    }

    .hero-section h1 {
        font-size: 2.75rem;
    }

    .section {
        padding: 4rem 0;
    }

    .two-column {
        flex-direction: row;
    }

    .two-column > * {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 992px) {
    .hero-section h1 {
        font-size: 3rem;
    }

    .section {
        padding: 5rem 0;
    }
}
