:root {
    --primary-color: #D2691E;
    --primary-dark: #2F4F4F;
    --primary-green: #6B8E23;
    --neutral-gray: #A9A9A9;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --dark-text: #2C2C2C;
    --border-color: #E0E0E0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: none;
    max-width: 1000px;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

.header-fixed {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 1rem 0;
}

.brand-name {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    color: var(--dark-text) !important;
    margin-left: 2rem;
    position: relative;
    padding: 0.5rem 0 !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

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

.container-fluid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-section {
    background: linear-gradient(135deg, rgba(47, 79, 79, 0.85) 0%, rgba(210, 105, 30, 0.75) 100%), url('images/hero-bg.jpg') center/cover;
    background-attachment: fixed;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
}

.hero-content h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-content h1:hover {
    transform: scale(1.02);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 4rem 0;
}

.content-section {
    padding: 6rem 0;
    position: relative;
}

.content-section:nth-child(odd) {
    background-color: var(--white);
}

.content-section:nth-child(even) {
    background-color: var(--light-bg);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

.text-column {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark-text);
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background-color: rgba(210, 105, 30, 0.1);
    border-left: 5px solid var(--primary-color);
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    color: var(--neutral-gray);
    margin-bottom: 0;
}

.glossary-rail {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.glossary-rail h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.glossary-rail p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.glossary-rail h4:first-child {
    margin-top: 0;
}

.timeline {
    position: relative;
    padding: 2rem 0;
    margin: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    margin-bottom: 2rem;
    width: 48%;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    text-align: right;
    padding-right: 4%;
}

.timeline-item:nth-child(even) {
    margin-left: 52%;
    text-align: left;
    padding-left: 4%;
}

.timeline-item-content {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 4px;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 2rem;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-item:nth-child(odd)::after {
    right: -47px;
}

.timeline-item:nth-child(even)::after {
    left: -47px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.content-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.content-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.content-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.content-card p {
    color: var(--neutral-gray);
    line-height: 1.8;
}

.disclaimer-section {
    background-color: rgba(107, 142, 35, 0.08);
    border-left: 5px solid var(--primary-green);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.disclaimer-section h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.disclaimer-section p {
    color: var(--dark-text);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.disclaimer-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.disclaimer-section li {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 2rem 0;
}

.image-caption {
    font-style: italic;
    color: var(--neutral-gray);
    font-size: 0.9rem;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    background-color: var(--light-bg);
    padding: 3rem;
    border-radius: 4px;
    max-width: 600px;
    margin: 2rem auto;
}

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

.form-group label {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1rem;
    color: var(--dark-text);
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(47, 79, 79, 0.2);
    transform: translateY(-2px);
}

.form-disclaimer {
    background-color: var(--white);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
    border-radius: 4px;
}

.form-disclaimer h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
}

.form-disclaimer p {
    font-size: 0.95rem;
    color: var(--neutral-gray);
    margin-bottom: 0.5rem;
}

.form-disclaimer ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.form-disclaimer li {
    color: var(--neutral-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

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

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

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

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

.cookie-btn-primary:hover {
    background-color: #C9562B;
}

.cookie-btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.cookie-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-btn-link {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cookie-btn-link:hover {
    background-color: rgba(210, 105, 30, 0.1);
}

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

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.thank-you-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
}

.thank-you-content h1 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.thank-you-content p {
    font-size: 1.1rem;
    color: var(--neutral-gray);
    margin-bottom: 2rem;
}

.back-to-home {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.back-to-home:hover {
    background-color: var(--primary-dark);
    text-decoration: none;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.blog-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.blog-card p {
    color: var(--neutral-gray);
    margin-bottom: 1.5rem;
}

.blog-card-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.blog-article {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.blog-article-meta {
    color: var(--neutral-gray);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-style: italic;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        min-height: 500px;
        padding: 4rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 4rem 0;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        text-align: left;
        padding: 0 0 0 3rem;
    }
    
    .timeline-item::after,
    .timeline-item:nth-child(odd)::after,
    .timeline-item:nth-child(even)::after {
        left: -25px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .stat-strip {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .blog-list {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }
}
