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

:root {
    --primary: #34495E;
    --accent-green: #2ECC71;
    --accent-orange: #F39C12;
    --accent-red: #E74C3C;
    --light-bg: #ECF0F1;
    --dark-text: #2C3E50;
    --light-text: #FFFFFF;
    --border-color: #BDC3C7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-text);
    background-color: #FFFFFF;
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--light-text);
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    width: 32px;
    height: 32px;
}

nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary);
    padding: 1rem;
    gap: 0.5rem;
}

nav.show {
    display: flex;
}

nav a, .menu-toggle {
    color: var(--light-text);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav a:hover, .menu-toggle:hover {
    background-color: rgba(255,255,255,0.1);
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

@media (min-width: 768px) {
    nav {
        display: flex !important;
        position: static;
        flex-direction: row;
        gap: 1rem;
        padding: 0;
        background: none;
    }

    nav a {
        padding: 0.5rem 1rem;
    }

    .menu-toggle {
        display: none;
    }
}

main {
    margin-top: 70px;
    padding-bottom: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 3rem 0;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, rgba(52, 73, 94, 0.9) 100%);
    color: var(--light-text);
    padding: 4rem 1rem;
    text-align: center;
}

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

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 8px;
    margin-top: 2rem;
}

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

.card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-green);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card h3 {
    margin-bottom: 1rem;
}

.card p {
    margin-bottom: 0.5rem;
}

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

@media (min-width: 768px) {
    .two-column {
        grid-template-columns: 1fr 1fr;
    }
}

.two-column img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.full-width-section {
    background: var(--light-bg);
    padding: 3rem 1rem;
    margin: 2rem 0;
}

.full-width-section h2 {
    margin-bottom: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

table th {
    background-color: var(--primary);
    color: var(--light-text);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

table tr:last-child td {
    border-bottom: none;
}

table tr:hover {
    background-color: var(--light-bg);
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.bullet-list li {
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.bullet-list li:before {
    content: "•";
    color: var(--accent-green);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-green);
    color: var(--light-text);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #27AE60;
    transform: scale(1.05);
}

.disclaimer {
    background-color: #FFF3CD;
    border-left: 4px solid var(--accent-orange);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.disclaimer h4 {
    color: #856404;
    margin-bottom: 0.5rem;
}

.disclaimer p {
    color: #856404;
    margin: 0;
}

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

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

footer h4 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

footer p, footer a {
    margin-bottom: 0.5rem;
    color: var(--light-text);
    text-decoration: none;
}

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

footer .footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

footer .footer-links a {
    margin-bottom: 0;
}

.footer-note {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
}

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

.image-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.image-card:hover {
    transform: scale(1.05);
}

.image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.image-card-text {
    padding: 1rem;
    background: var(--light-bg);
}

.image-card-text h4 {
    margin-bottom: 0.5rem;
}

.contact-form {
    max-width: 500px;
    margin: 2rem auto;
}

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

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

input[type="email"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

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

input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--light-text);
    padding: 1.5rem;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons button {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cookie-accept:hover {
    background-color: #27AE60;
}

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

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

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

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

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

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

.faq-question:hover {
    background-color: #D5DBDB;
}

.faq-answer {
    padding: 1.5rem;
    display: none;
    background-color: white;
}

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

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
}

.myths-item {
    background: var(--light-bg);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-red);
}

.myth-label {
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.fact-label {
    color: var(--accent-green);
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
    text-transform: uppercase;
    font-size: 0.85rem;
}

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

.synergy-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--accent-orange);
}

.synergy-card h4 {
    margin-bottom: 1rem;
}

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

    h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    section {
        padding: 2rem 0;
    }

    main {
        margin-top: 60px;
    }
}
