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

body {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

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

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #6B4226;
    transition: all 0.3s ease;
}

a:hover {
    color: #8B5A2B;
    text-decoration: none;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #6B4226;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #333;
    margin-left: 1.5rem;
}

.navbar-nav .nav-link:hover {
    color: #6B4226;
}

main {
    margin-top: 76px;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 66, 38, 0.85), rgba(139, 90, 43, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content .lead {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.disclaimer-text {
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    background-color: rgba(255,255,255,0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-top: 1rem;
}

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

.content-section.bg-light {
    background-color: #f8f9fa;
}

.content-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-primary {
    background-color: #6B4226;
    border-color: #6B4226;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: #8B5A2B;
    border-color: #8B5A2B;
}

.btn-outline-primary {
    color: #6B4226;
    border-color: #6B4226;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 4px;
}

.btn-outline-primary:hover {
    background-color: #6B4226;
    border-color: #6B4226;
    color: #fff;
}

.faq-section .card {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
}

.faq-section .card-header {
    background-color: transparent;
    border: none;
    padding: 0;
}

.faq-section .btn-link {
    color: #333;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
}

.faq-section .btn-link:hover {
    color: #6B4226;
}

.faq-section .card-body {
    padding: 1rem 0 2rem 0;
}

.limitations-section {
    background-color: #fff8f0;
    border-left: 4px solid #6B4226;
    padding: 3rem 0;
}

.limitations-section ul {
    margin-top: 1.5rem;
    margin-left: 1.5rem;
}

.limitations-section li {
    margin-bottom: 0.75rem;
}

.cta-section {
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section .btn {
    margin: 0.5rem;
}

.contact-section form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 4rem 0 2rem 0;
}

footer h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

footer p {
    color: #ccc;
    font-size: 0.95rem;
}

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

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

.footer-links a {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    color: #999;
    font-size: 0.9rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    margin-right: 1rem;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .content-image {
        margin-bottom: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-content button {
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}
