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

:root {
    --primary-color: #33691E;
    --primary-dark: #1B5E20;
    --primary-light: #558B2F;
    --accent-beige: #F5F3ED;
    --accent-light: #E8F5E9;
    --text-dark: #2C3E2C;
    --text-medium: #5D6D5D;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Karla', Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

a {
    transition: all 0.4s ease-in-out;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

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

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

.hero-section {
    margin-top: 80px;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--accent-beige) 0%, var(--accent-light) 100%);
    background-image: url('../images/hero-alpine-meadow.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: soft-light;
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 243, 237, 0.92) 0%, rgba(232, 245, 233, 0.88) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-intro {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.hero-disclaimer {
    font-size: 15px;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-left: 4px solid var(--primary-color);
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(51, 105, 30, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 105, 30, 0.3);
}

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

.content-section.bg-light {
    background: var(--accent-beige);
}

.content-section.bg-contact {
    background: linear-gradient(135deg, var(--accent-beige) 0%, var(--accent-light) 100%);
}

.content-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow);
    transition: all 0.4s ease-in-out;
}

.content-img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.info-box {
    background: var(--accent-light);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow);
}

.info-box h3 {
    margin-top: 0;
    color: var(--primary-dark);
}

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

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

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.4s ease-in-out;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    color: var(--primary-dark);
    margin-top: 0;
    font-size: 22px;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow);
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 17px;
    transition: all 0.4s ease-in-out;
    font-family: 'Karla', Helvetica, sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(51, 105, 30, 0.1);
}

.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow);
}

.contact-info h3 {
    color: var(--primary-dark);
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.disclaimer-text {
    font-size: 15px;
    color: var(--primary-dark);
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-left: 4px solid var(--primary-color);
}

.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 1rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 -4px 15px var(--shadow);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    color: var(--white);
    flex: 1;
}

.btn-accept {
    background: var(--white);
    color: var(--primary-dark);
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.btn-accept:hover {
    background: var(--accent-beige);
    transform: translateY(-2px);
}

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

.policy-modal.show {
    display: block;
}

.policy-modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.policy-modal-close {
    color: var(--text-medium);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.policy-modal-close:hover {
    color: var(--primary-dark);
}

.thank-you-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.thank-you-modal.show {
    display: block;
}

.thank-you-content {
    background-color: var(--white);
    margin: 15% auto;
    padding: 3rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.thank-you-close {
    color: var(--text-medium);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.thank-you-close:hover {
    color: var(--primary-dark);
}

.thank-you-content h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.thank-you-content p {
    margin-bottom: 2rem;
    font-size: 18px;
}

.thank-you-btn {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 22px;
    }
    
    .hero-section {
        min-height: 60vh;
        padding: 3rem 0;
    }
    
    .hero-intro {
        font-size: 18px;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .content-img {
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .policy-modal-content {
        padding: 2rem;
        margin: 10% auto;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 30px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .navbar-brand {
        font-size: 20px;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 16px;
    }
}
