:root {
    --bg-primary: #f8f7f5;
    --bg-secondary: #e8e6e3;
    --text-primary: #2c2c2c;
    --text-secondary: #4a4a4a;
    --accent-dark: #1e3a4c;
    --accent-teal: #5a8a99;
    --accent-sand: #c4a574;
    --border-color: #d9d6d2;
    --error-color: #d32f2f;
    --success-color: #388e3c;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

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

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

header.header {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-dark) !important;
    letter-spacing: 0.5px;
}

.nav-link {
    color: var(--text-primary) !important;
    margin-left: 1.5rem;
    transition: color 0.2s ease;
}

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

.hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
}

.hero-overlay .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-dark);
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--accent-sand);
    color: var(--text-primary);
    border: none;
}

.btn-primary:hover {
    background-color: #b39468;
    color: var(--text-primary);
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-dark);
    border: 2px solid var(--accent-dark);
}

.btn-secondary:hover {
    background-color: var(--accent-dark);
    color: white;
    text-decoration: none;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.strip-section {
    margin: 0;
    padding: 0;
}

.strip-section img {
    display: block;
    max-height: 250px;
    object-fit: cover;
}

main {
    min-height: calc(100vh - 200px);
}

.content-section {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
}

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

.definition-item {
    margin-bottom: 2rem;
}

.definition-item h3 {
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
}

.definition-item p {
    color: var(--text-secondary);
}

.data-card {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent-teal);
    transition: transform 0.2s ease;
}

.data-card:hover {
    transform: translateY(-2px);
}

.data-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.workflow-step {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    border-top: 3px solid var(--accent-teal);
}

.workflow-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.workflow-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.testimonial-card {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent-sand);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 500;
    color: var(--accent-dark);
    font-size: 0.95rem;
}

.faq-card {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-card .card-header {
    background-color: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
}

.faq-card .card-header button {
    color: var(--accent-dark);
    font-weight: 500;
    text-align: left;
}

.faq-card .card-header button:hover {
    color: var(--accent-teal);
}

.faq-card .card-body {
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 1.5rem;
}

.hero-plain {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.hero-plain h1 {
    margin-bottom: 0.75rem;
}

.hero-plain .lead {
    color: var(--text-secondary);
    font-size: 1.25rem;
}

.content-list {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-list li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.glossary-item {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent-teal);
}

.glossary-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.glossary-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.task-card {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent-sand);
    transition: transform 0.2s ease;
    min-height: 180px;
}

.task-card:hover {
    transform: translateY(-2px);
}

.task-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.task-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.scenario-item {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent-teal);
}

.scenario-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.scenario-item p {
    color: var(--text-secondary);
}

.data-caution {
    background-color: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent-dark);
}

.data-caution h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.data-caution p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.check-block {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    min-height: 200px;
}

.check-block h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.check-block p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cta-section {
    background-color: white;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.thank-you-section {
    background-color: white;
    text-align: center;
}

.thank-you-section h1 {
    margin-bottom: 1rem;
}

.thank-you-section .lead {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.thank-you-section p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
}

.legal-section {
    background-color: white;
}

.legal-date {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-section h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.company-info-block h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.company-info-block p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer {
    background-color: var(--accent-dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-dark);
    color: white;
    padding: 1.5rem;
    display: none;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent-sand);
}

.cookie-content .btn {
    margin: 0;
    white-space: nowrap;
}

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

.form-group label {
    color: var(--accent-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem;
    color: var(--text-primary);
    background-color: white;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    border-color: var(--accent-dark);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 76, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #999;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--accent-dark);
    border: 1px solid var(--border-color);
}

.form-check-label {
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

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

.contact-info-section h3 {
    margin-bottom: 1rem;
}

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

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }

    .navbar-brand {
        font-size: 1.25rem;
    }

    .nav-link {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

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

    .cookie-content p {
        flex: none;
        width: 100%;
    }

    .cookie-content .btn {
        width: 100%;
        text-align: center;
    }
}

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

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding: 0.75rem;
    }

    .col-md-6 {
        margin-bottom: 1.5rem;
    }

    .col-lg-6 {
        margin-bottom: 1.5rem;
    }
}
