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

:root {
    --primary-color: #4B7B6A;
    --primary-hover: #3d6657;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8faf9;
    --border-light: #e5e9e7;
    --white: #ffffff;
    --spacing-sm: 85px;
    --spacing-lg: 115px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-medium);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
    margin-bottom: 2.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 2rem;
}

p {
    margin-bottom: 1.2rem;
}

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

a:hover {
    opacity: 0.9;
    text-decoration: none;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--border-light);
    z-index: 1000;
    padding: 0.5rem 0;
}

.navbar {
    padding: 0.75rem 0;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}

.nav-link {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 300;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/hero-alpine-nature.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 0;
    text-align: center;
    padding: 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(248, 250, 249, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    opacity: 1;
    transform: translateY(-2px);
}

.content-section {
    padding: var(--spacing-lg) 0;
}

.bg-light-section {
    background-color: var(--bg-light);
}

.section-spacing {
    margin-bottom: 4rem;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 2;
    margin-bottom: 2rem;
}

.content-image {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: 8px;
    margin: 1rem 0;
}

.component-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    min-height: 320px;
    transition: transform 0.3s ease;
}

.component-card:hover {
    transform: translateY(-4px);
}

.component-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0;
}

.component-card .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.component-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.info-note {
    background-color: var(--bg-light);
    border-left: 3px solid var(--primary-color);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

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

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.disclaimer-box {
    background-color: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box h3 {
    color: var(--primary-color);
    margin-top: 2rem;
}

.disclaimer-box h3:first-child {
    margin-top: 0;
}

.disclaimer-emphasis {
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.contact-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

.contact-form-container {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2.5rem;
}

.form-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.form-control {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.form-success-message {
    display: none;
    background-color: #e8f5e9;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.form-success-message.show {
    display: block;
}

.final-cta {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: var(--spacing-lg) 0;
}

.btn-final-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
    margin: 2rem 0;
}

.btn-final-cta:hover {
    background-color: var(--primary-color);
    color: var(--white);
    opacity: 1;
}

.final-disclaimer {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 2rem;
}

.footer {
    background-color: var(--text-dark);
    color: #b0b0b0;
    padding: var(--spacing-sm) 0 2rem;
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.footer p {
    font-size: 0.95rem;
    line-height: 1.8;
}

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

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

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

.footer-links a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    margin-right: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-cookie-accept {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    background-color: var(--primary-hover);
}

.policy-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);
}

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

.policy-modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 8px;
    max-width: 800px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.policy-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

#policy-content h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 2rem;
}

#policy-content h3 {
    color: var(--text-dark);
    margin-top: 2.5rem;
}

#policy-content p {
    margin-bottom: 1.5rem;
}

#policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

#policy-content li {
    margin-bottom: 0.75rem;
}

@media (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .section-spacing {
        margin-bottom: 3rem;
    }
    
    .content-image {
        margin: 2rem auto;
        display: block;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-section {
        min-height: 80vh;
    }
    
    .content-section {
        padding: 50px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .policy-modal-content {
        margin: 10% auto;
        padding: 2rem;
    }
}
