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

:root {
    --primary-cream: #F5F1E8;
    --secondary-sand: #E8DCC8;
    --accent-warm: #D4C4A8;
    --text-dark: #2C2C2C;
    --text-medium: #5A5A5A;
    --white: #FFFFFF;
}

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

.navbar {
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-cream) 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.navbar-brand:hover {
    color: var(--text-dark);
}

.navbar-nav .nav-link {
    color: var(--text-medium);
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

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

.hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    margin-bottom: 3rem;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245,241,232,0.8) 0%, rgba(232,220,200,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

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

.content-block {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.content-block h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-block h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-block p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-block ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.content-block ul li {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 0.75rem;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.limitation-notice {
    background: linear-gradient(135deg, var(--secondary-sand) 0%, var(--accent-warm) 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid var(--accent-warm);
}

.limitation-notice h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.limitation-notice p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 0.75rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-sand) 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.btn-custom {
    background: var(--accent-warm);
    color: var(--text-dark);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem;
}

.btn-custom:hover {
    background: var(--secondary-sand);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
}

.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer h5 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
}

.footer p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-disclaimer {
    background: rgba(212,196,168,0.15);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: #dddddd;
    font-weight: 500;
}

.contact-form {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-control {
    border: 2px solid var(--secondary-sand);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-warm);
    box-shadow: 0 0 0 0.2rem rgba(212,196,168,0.25);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.btn-cookie {
    background: var(--accent-warm);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background: var(--secondary-sand);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .content-block {
        padding: 2rem;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        height: 400px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .content-block {
        padding: 1.5rem;
    }
    
    .hero-section {
        height: 300px;
    }
}
