:root {
    --primary-mint: #a8dadc;
    --primary-dark: #457b9d;
    --text-dark: #1d3557;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

h1 {
    font-size: 2.5rem;
}

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

h3 {
    font-size: 1.5rem;
}

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

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

a:hover {
    color: var(--primary-mint);
    text-decoration: none;
}

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

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

.cookie-banner p {
    margin: 0;
    display: inline-block;
    color: var(--bg-white);
    margin-right: 1rem;
}

.cookie-banner a {
    color: var(--primary-mint);
    text-decoration: underline;
}

.cookie-banner button {
    float: right;
}

.header {
    background: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.navbar-brand:hover {
    color: var(--primary-mint);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary-mint);
}

.hero-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-content {
    text-align: center;
    padding: 2rem 0;
}

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

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

.page-header {
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

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

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

.content-block img {
    margin-bottom: 1.5rem;
}

.intro-block {
    padding: 2rem;
    background: var(--bg-white);
    border-left: 4px solid var(--primary-mint);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.limitations-section {
    background: linear-gradient(135deg, var(--primary-mint) 0%, var(--primary-dark) 100%);
}

.limitations-block {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.limitations-block h2 {
    color: var(--primary-dark);
}

.cta-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.btn-primary {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-mint);
    border-color: var(--primary-mint);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.disclaimer-text {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
    padding: 0.5rem 0;
}

.contact-info-box,
.contact-form-box {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.contact-info-box h3,
.contact-form-box h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-mint);
    box-shadow: 0 0 0 0.2rem rgba(168, 218, 220, 0.25);
}

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

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

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

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

.rounded {
    border-radius: 12px;
}

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

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

    h2 {
        font-size: 1.5rem;
    }

    .hero-content .lead {
        font-size: 1rem;
    }

    .content-section {
        padding: 2rem 0;
    }

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

    .cookie-banner button {
        float: none;
        margin-top: 1rem;
        width: 100%;
    }
}
