:root {
    --primary-color: #1B5E20;
    --primary-dark: #145018;
    --primary-light: #2E7D32;
    --background: #FAFDF9;
    --text-dark: #2C3E2E;
    --text-light: #5A6C5B;
    --border-light: #E8F0E8;
    --shadow: rgba(0, 0, 0, 0.06);
}

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

body {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(to bottom, var(--background) 0%, #ffffff 100%);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

h1 {
    font-size: 44px;
    font-weight: 700;
}

h2 {
    font-size: 34px;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.container {
    max-width: 1180px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Roboto Slab', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

main {
    margin-top: 76px;
}

.hero-section {
    position: relative;
    height: 600px;
    background: url('../images/hero-alps.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.85) 0%, rgba(46, 125, 50, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.hero-content .lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.disclaimer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.content-section {
    padding: 80px 0;
    animation: fadeIn 0.4s ease;
}

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

.content-section img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 18px var(--shadow);
    transition: transform 0.3s ease;
}

.content-section img:hover {
    transform: translateY(-4px);
}

.product-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.product-card h3 {
    margin-bottom: 15px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.disclaimer-section {
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.disclaimer-box {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 18px var(--shadow);
    border: 2px solid var(--primary-light);
}

.disclaimer-box p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.btn-custom {
    background: var(--primary-color);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(27, 94, 32, 0.3);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-color);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.form-control {
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(27, 94, 32, 0.15);
    outline: none;
}

label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.footer {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.footer .small {
    font-size: 14px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    display: block;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    padding-left: 8px;
}

.footer .border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.policy-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

.policy-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.4s ease;
}

.policy-close,
.thank-you-close {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.policy-close:hover,
.policy-close:focus,
.thank-you-close:hover,
.thank-you-close:focus {
    color: var(--primary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 -4px 12px var(--shadow);
    z-index: 1500;
    animation: slideUp 0.4s ease;
}

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

.cookie-content p {
    margin: 0;
    color: white;
}

.cookie-content .btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .hero-section {
        height: 450px;
    }
    
    .content-section {
        padding: 50px 0;
    }
    
    .product-card img {
        height: 200px;
    }
    
    .policy-modal-content {
        margin: 10% auto;
        padding: 25px;
        width: 95%;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
