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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #faf8f5;
}

h1, h2, h3 {
    color: #355E3B;
    margin-bottom: 1rem;
}

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

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

#main-header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar-brand {
    color: #355E3B;
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.4s;
}

.navbar-brand:hover {
    color: #2a4a2f;
}

.nav-link {
    color: #555;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.4s;
}

.nav-link:hover {
    color: #355E3B;
}

.navbar-toggler {
    border: 2px solid #355E3B;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23355E3B' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#hero {
    margin-top: 80px;
    height: 100vh;
    background-image: url('images/hero-table.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(53, 94, 59, 0.7);
    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;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.hero-disclaimer {
    font-size: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.btn-hero {
    background-color: #fff;
    color: #355E3B;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.4s;
}

.btn-hero:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    text-decoration: none;
    color: #355E3B;
}

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

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

.content-section img {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.4s;
}

.content-section img:hover {
    transform: scale(1.02);
}

.btn-primary {
    background-color: #355E3B;
    border-color: #355E3B;
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.4s;
}

.btn-primary:hover {
    background-color: #2a4a2f;
    border-color: #2a4a2f;
    transform: translateY(-2px);
}

.fact-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.4s;
}

.fact-card:hover {
    transform: translateY(-5px);
}

.accordion .card {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    background: transparent;
}

.accordion .card-header {
    background: transparent;
    border: none;
    padding: 0;
}

.accordion .btn-link {
    color: #355E3B;
    text-decoration: none;
    font-weight: 600;
    width: 100%;
    text-align: left;
    padding: 1rem 0;
}

.accordion .btn-link:hover {
    color: #2a4a2f;
    text-decoration: none;
}

.accordion .card-body {
    padding: 1rem 0 2rem 0;
    color: #555;
}

.disclaimer-section {
    background: linear-gradient(135deg, #f5f3f0 0%, #faf8f5 100%);
}

.disclaimer-box {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #355E3B;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.disclaimer-box p {
    margin-bottom: 1rem;
}

.disclaimer-box strong {
    color: #355E3B;
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.7rem;
    transition: border-color 0.4s;
}

.form-control:focus {
    border-color: #355E3B;
    box-shadow: none;
}

footer {
    background-color: #2a2a2a;
    color: #fff;
    padding: 3rem 0 1rem 0;
}

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

footer p {
    color: #ccc;
}

.footer-disclaimer {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.4s;
}

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

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #355E3B;
    color: #fff;
    padding: 1rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

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

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

#acceptCookies {
    background-color: #fff;
    color: #355E3B;
    border: none;
    font-weight: 600;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.policy-modal-content {
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    text-align: left;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #355E3B;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: #2a4a2f;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
