:root {
    --primary-color: #2C3E50;
    --secondary-light: #F5F7FA;
    --accent-green: #4CAF50;
    --accent-copper: #D98A29;
    --accent-teal: #2A9D8F;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.4;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1rem;
}

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

a:hover {
    color: var(--accent-green);
}

button, .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    padding: 0.8rem 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-teal);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-green);
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--accent-copper);
}

header.navbar-section {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--text-light);
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    padding: 1rem 0;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
}

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

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-teal);
    border-bottom: 2px solid var(--accent-teal);
}

footer.footer-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    margin-top: 4rem;
    padding: 3rem 0 1rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-block h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.footer-tagline {
    font-weight: 600;
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: var(--text-light);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-teal);
    border-bottom: 1px solid var(--accent-teal);
}

.footer-contact {
    font-size: 0.95rem;
}

.footer-hours {
    font-size: 0.95rem;
}

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

main {
    min-height: calc(100vh - 200px);
}

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

.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.4) 0%, rgba(44, 62, 80, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
}

.hero-content h1 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: var(--text-light);
    font-size: 1.2rem;
}

.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.two-column-section.reverse {
    grid-template-columns: 1fr 1fr;
}

.two-column-section.reverse > :first-child {
    order: 2;
}

.two-column-section.reverse > :last-child {
    order: 1;
}

.two-column-text {
    padding: 1rem;
}

.two-column-image {
    overflow: hidden;
    border-radius: 4px;
}

.two-column-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.two-column-image:hover img {
    transform: scale(1.02);
}

.section-with-bg {
    background-color: var(--secondary-light);
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.section-with-accent-bg {
    background-color: var(--accent-green);
    color: var(--text-light);
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.section-with-accent-bg h2,
.section-with-accent-bg h3 {
    color: var(--text-light);
}

.section-with-copper-bg {
    background-color: var(--accent-copper);
    color: var(--text-light);
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.section-with-copper-bg h2,
.section-with-copper-bg h3 {
    color: var(--text-light);
}

.section-with-teal-bg {
    background-color: var(--accent-teal);
    color: var(--text-light);
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.section-with-teal-bg h2,
.section-with-teal-bg h3 {
    color: var(--text-light);
}

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

.card {
    background: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.card h3 {
    margin-top: 0;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.card-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-teal);
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--accent-green);
}

.myth-section {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-copper);
    background-color: rgba(217, 138, 41, 0.05);
}

.myth-section:nth-child(even) {
    border-left-color: var(--accent-green);
    background-color: rgba(76, 175, 80, 0.05);
}

.myth-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.myth-content {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-container {
    max-width: 600px;
    margin: 2rem auto;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

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

.disclaimer-box {
    background-color: var(--secondary-light);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-copper);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

.faq-item {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 4px;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    background-color: var(--secondary-light);
    font-weight: 600;
    color: var(--primary-color);
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: rgba(42, 157, 143, 0.1);
}

.faq-answer {
    padding: 1.5rem;
    display: none;
    background-color: var(--text-light);
}

.faq-answer.show {
    display: block;
}

.faq-item.active .faq-question {
    background-color: var(--accent-teal);
    color: var(--text-light);
}

.toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
}

.glossary-section {
    background-color: var(--secondary-light);
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.glossary-term {
    margin-bottom: 1.5rem;
}

.glossary-term strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.glossary-definition {
    margin-top: 0.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--accent-green);
    color: var(--text-dark);
}

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

.timeline-item {
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--accent-teal);
    border-radius: 50%;
    border: 3px solid var(--text-light);
    box-shadow: 0 0 0 2px var(--accent-teal);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 20px;
    width: 2px;
    height: calc(100% + 2rem);
    background-color: var(--accent-teal);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-year {
    font-weight: 700;
    color: var(--accent-teal);
    font-size: 1.1rem;
}

.timeline-content {
    color: var(--text-dark);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: var(--secondary-light);
}

.comparison-table tbody tr:hover {
    background-color: rgba(42, 157, 143, 0.05);
}

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

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: var(--accent-green);
    color: var(--text-light);
}

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

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

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

.cookie-btn-learn {
    background-color: var(--accent-copper);
    color: var(--text-light);
}

.cookie-btn-learn:hover {
    background-color: #C77A1F;
}

.list-content {
    margin: 1.5rem 0;
}

.list-content ul,
.list-content ol {
    margin-left: 2rem;
    line-height: 1.8;
}

.list-content li {
    margin-bottom: 0.8rem;
}

.text-balance {
    text-wrap: balance;
}

.text-pretty {
    text-wrap: pretty;
}

.section-spacing {
    margin: 4rem 0;
    padding: 2rem 0;
}

.accent-text {
    color: var(--accent-teal);
    font-weight: 600;
}

.warning-text {
    color: var(--accent-copper);
    font-weight: 600;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .two-column-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .two-column-section.reverse {
        grid-template-columns: 1fr;
    }

    .two-column-section.reverse > :first-child {
        order: unset;
    }

    .two-column-section.reverse > :last-child {
        order: unset;
    }

    .hero-section {
        min-height: 40vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-container {
        padding: 1.5rem 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}

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

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

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    body {
        font-size: 15px;
    }

    .page-container {
        padding: 1rem;
    }

    p {
        font-size: 0.95rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.7rem;
    }
}
