:root {
    --primary-color: #6b7c93;
    --primary-dark: #4a5568;
    --primary-light: #a0aec0;
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-muted: #edf2f7;
    --border-color: #e2e8f0;
}

* {
    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-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.25rem;
    letter-spacing: -0.025em;
}

h2 {
    font-size: 1.75rem;
    color: var(--primary-dark);
}

h3 {
    font-size: 1.35rem;
    color: var(--text-medium);
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

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

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

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

.navbar-brand {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color) !important;
    letter-spacing: 0.05em;
}

.navbar-brand:hover {
    color: var(--primary-dark) !important;
    text-decoration: none;
}

.nav-link {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--text-medium) !important;
    padding: 0.5rem 1rem !important;
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

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

main {
    padding-top: 80px;
}

.hero-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.hero-section p {
    font-size: 1.1rem;
    max-width: 600px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.section {
    padding: 4rem 0;
}

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

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

.section-title {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-light);
}

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

.content-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

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

.two-column .column {
    flex: 1;
    min-width: 280px;
}

.info-box {
    background-color: var(--bg-muted);
    border-left: 3px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
}

.info-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.disclaimer-box {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.disclaimer-box h3 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.disclaimer-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-light);
}

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

.cta-btn {
    display: inline-block;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--bg-white);
    background-color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    border: none;
    transition: background-color 0.2s ease;
    letter-spacing: 0.02em;
}

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

.faq-section {
    padding: 4rem 0;
}

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

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

.faq-question {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.contact-section {
    padding: 4rem 0;
}

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

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

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

.contact-form label {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    display: block;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

footer {
    background-color: var(--text-dark);
    color: var(--bg-muted);
    padding: 3rem 0 1.5rem;
}

footer h3 {
    font-size: 1rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

footer p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--primary-light);
}

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

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

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--bg-white);
    text-decoration: none;
}

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

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

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

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

.cookie-banner p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--bg-muted);
}

.cookie-banner button {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
}

.policy-page {
    padding: 4rem 0;
}

.policy-page h1 {
    margin-bottom: 2rem;
}

.policy-page h2 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-page p,
.policy-page li {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.policy-page ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.about-page .about-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

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

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

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

    .section {
        padding: 3rem 0;
    }

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

    .two-column .column {
        min-width: 100%;
    }

    footer {
        text-align: center;
    }

    .footer-links {
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        padding: 4rem 0;
    }
}

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

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