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

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

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #2c3e50;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hero-section {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #495057;
    padding: 15px;
    background-color: rgba(168, 213, 186, 0.15);
    border-left: 4px solid #a8d5ba;
    border-radius: 4px;
    margin-top: 20px;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 15px;
}

.content-section p {
    font-size: 1.05rem;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

.content-section ul {
    margin-bottom: 20px;
}

.content-section ul li {
    font-size: 1.05rem;
    color: #495057;
    margin-bottom: 10px;
    line-height: 1.7;
}

.ingredient-card {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.ingredient-card h3 {
    color: #a8d5ba;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.ingredient-card p {
    font-size: 1rem;
    color: #6c757d;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dee2e6;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.disclaimer-section {
    background-color: #f8f9fa;
    border-top: 3px solid #a8d5ba;
    border-bottom: 3px solid #a8d5ba;
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #a8d5ba 0%, #7bc5a0 100%);
    color: #fff;
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 25px;
}

.btn-primary {
    background-color: #2c3e50;
    border-color: #2c3e50;
    padding: 12px 30px;
    font-size: 1.05rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a252f;
    border-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer h4 {
    color: #a8d5ba;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer p {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer a:hover {
    color: #a8d5ba;
}

.footer ul li {
    margin-bottom: 8px;
}

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

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

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-banner .btn {
    padding: 8px 25px;
}

.contact-form .form-control {
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 12px;
    font-size: 1rem;
}

.contact-form .form-control:focus {
    border-color: #a8d5ba;
    box-shadow: 0 0 0 0.2rem rgba(168, 213, 186, 0.25);
}

.contact-form label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.contact-info {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #a8d5ba;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

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

.rounded {
    border-radius: 8px;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .cookie-banner .col-md-9,
    .cookie-banner .col-md-3 {
        text-align: center;
    }
    
    .cookie-banner .btn {
        margin-top: 15px;
    }
}
