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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    background-color: #ffffff;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #5d4e46;
}

.navbar {
    padding: 1rem 0;
}

.nav-link {
    color: #5d4e46;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8b7968;
}

.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #d4c5b9 0%, #a89a8d 100%);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero .lead {
    font-size: 1.25rem;
}

.intro-section {
    background-color: #ffffff;
}

.intro-section h2 {
    color: #5d4e46;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.disclaimer-highlight {
    background-color: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid #8b7968;
    margin-top: 1.5rem;
    font-style: italic;
}

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

.content-section h2 {
    color: #5d4e46;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-section h3 {
    color: #5d4e46;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.content-section img {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bg-light {
    background-color: #faf9f7;
}

.bg-warning-light {
    background-color: #fff8e1;
    border: 1px solid #ffe082;
}

.limitations-section h2 {
    color: #5d4e46;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.limitations-section p {
    margin-bottom: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, #d4c5b9 0%, #a89a8d 100%);
    color: #ffffff;
}

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

.cta-section .lead {
    color: #ffffff;
}

.btn-primary {
    background-color: #5d4e46;
    border-color: #5d4e46;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #4a3e38;
    border-color: #4a3e38;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline-secondary {
    border-color: #ffffff;
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: #ffffff;
    color: #5d4e46;
}

.page-header {
    padding: 3rem 0;
}

.page-header h1 {
    color: #5d4e46;
    font-weight: 700;
}

.card {
    border: none;
    border-radius: 8px;
}

.card-body {
    padding: 2rem;
}

.footer {
    margin-top: 4rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

.cookie-banner p {
    margin: 0;
}

@media (max-width: 768px) {
    .hero {
        height: 350px;
    }

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

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

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

    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }

    .ml-3 {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 250px;
    }

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