:root {
    --bg-color: #fcfbf8;
    --text-color: #2c3e2d;
    --primary-color: #7b906f;
    --secondary-color: #e6ebd8;
    --accent-color: #d18d6c;
    --font-heading: 'Lora', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky; 
    top: 0; 
    z-index: 100;
}

.header-container {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo { 
    font-family: var(--font-heading); 
    font-size: 1.5rem; 
    font-weight: bold; 
    color: var(--primary-color); 
    text-decoration: none; 
    display: flex; 
    align-items: center; 
    gap: 10px;
}

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

nav ul { 
    list-style: none; 
    display: flex; 
    gap: 2rem; 
}

nav a { 
    text-decoration: none; 
    color: var(--text-color); 
    font-weight: 500; 
    transition: color 0.3s;
}

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

/* Base button */
.btn { 
    display: inline-block; 
    padding: 0.8rem 2rem; 
    background-color: var(--primary-color); 
    color: #fff; 
    text-decoration: none; 
    border-radius: 30px; 
    font-weight: bold; 
    transition: background 0.3s; 
    border: none; 
    cursor: pointer; 
    font-size: 1rem;
}
.btn:hover { 
    background-color: var(--accent-color); 
}

/* Sections Setup */
.main-content > section, .container > section {
    margin-bottom: 5rem;
}
.main-content {
    padding-bottom: 2rem;
}
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 5%;
}

/* BLOCK 1: Hero Banner */
.block-hero {
    position: relative; 
    height: 80vh; 
    min-height: 500px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    color: #fff;
    margin-bottom: 5rem;
}
.hero-img { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; 
}
.hero-overlay { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(44, 62, 45, 0.45); z-index: -1;
}
.hero-content { 
    z-index: 1; max-width: 800px; padding: 0 20px; 
}
.hero-content h1 { 
    font-family: var(--font-heading); font-size: 4rem; margin-bottom: 1rem; 
}
.hero-content p { 
    font-size: 1.25rem; margin-bottom: 2.5rem; 
}

/* BLOCK 2 & 3: Split blocks (Image + Text) */
.block-split { 
    display: flex; align-items: center; gap: 4rem; padding: 2rem 0;
}
.block-split.reverse { 
    flex-direction: row-reverse; 
}
.block-split .content, .block-split .image { 
    flex: 1; 
}
.block-split img { 
    width: 100%; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}
.block-split h2 { 
    font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--primary-color); 
}
.block-split p { 
    font-size: 1.1rem; margin-bottom: 1rem; color: #444; 
}
.block-split ul { 
    padding-left: 1.5rem; font-size: 1.1rem; color: #444; margin-bottom: 1.5rem;
}
.block-split li {
    margin-bottom: 0.5rem;
}

/* BLOCK 4: Accordions */
.block-accordions {
    max-width: 800px;
    margin: 0 auto 5rem;
}
.block-accordions h2 { 
    text-align: center; font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 3rem; color: var(--primary-color); 
}
details { 
    background: #fff; padding: 1.5rem; border-radius: 10px; margin-bottom: 1rem; box-shadow: 0 4px 15px rgba(0,0,0,0.03); cursor: pointer; transition: all 0.3s ease;
}
details:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
summary { 
    font-size: 1.2rem; font-weight: bold; color: var(--text-color); outline: none; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
summary::-webkit-details-marker {
    display: none;
}
summary::after { 
    content: "+"; color: var(--primary-color); font-size: 1.5rem;
}
details[open] summary::after { 
    content: "-"; 
}
details p { 
    margin-top: 1rem; color: #555; line-height: 1.7;
}

/* BLOCK 5: Table */
.block-table { 
    background-color: var(--secondary-color); border-radius: 20px; padding: 4rem 2rem; 
}
.block-table h2 { 
    text-align: center; font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 3rem; color: var(--text-color); 
}
.table-responsive {
    overflow-x: auto;
}
table { 
    width: 100%; border-collapse: collapse; background: #fff; border-radius: 10px; overflow: hidden; min-width: 600px;
}
th, td { 
    padding: 1.5rem; text-align: left; border-bottom: 1px solid #eee; color: #444;
}
th { 
    background-color: var(--primary-color); color: #fff; font-weight: bold; font-size: 1.1rem;
}
tr:last-child td {
    border-bottom: none;
}

/* BLOCK 6: Cards */
.block-cards { 
    text-align: center; 
}
.block-cards h2 { 
    font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 3rem; color: var(--primary-color); 
}
.cards { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; 
}
.card { 
    background: #fff; padding: 3rem 2rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s; display: flex; flex-direction: column;
}
.card:hover { 
    transform: translateY(-10px); 
}
.card h3 { 
    font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-color);
}
.card .price { 
    font-size: 2.5rem; font-family: var(--font-heading); color: var(--primary-color); margin-bottom: 1.5rem; 
}
.card ul { 
    list-style: none; margin-bottom: 2rem; color: #666; flex-grow: 1;
}
.card ul li { 
    margin-bottom: 0.5rem; padding-bottom: 0.5rem; border-bottom: 1px solid #f0f0f0;
}
.card ul li:last-child {
    border-bottom: none;
}

/* BLOCK 7: Text Only + Form */
.block-text { 
    text-align: center; max-width: 800px; margin: 0 auto; padding: 2rem 0;
}
.text-content-wrapper > h2 { 
    font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 2rem; color: var(--primary-color); 
}
.reviews-list {
    margin-bottom: 4rem;
}
blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--primary-color);
}

.subscribe-form-wrapper { 
    background-color: var(--primary-color); color: #fff; border-radius: 20px; padding: 4rem 2rem; box-shadow: 0 15px 40px rgba(123, 144, 111, 0.2);
}
.subscribe-form-wrapper h3 { 
    font-family: var(--font-heading); font-size: 2rem; margin-bottom: 2rem; 
}
#subscribe-form { 
    max-width: 400px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; 
}
#subscribe-form input { 
    padding: 1.2rem; border: none; border-radius: 5px; font-family: var(--font-body); font-size: 1rem; width: 100%; outline: none;
}
#subscribe-form input:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}
#subscribe-form button {
    background-color: var(--text-color);
    margin-top: 0.5rem;
    padding: 1.2rem;
}
#subscribe-form button:hover {
    background-color: #1a251b;
}

/* Footer */
footer { 
    background-color: var(--text-color); color: #fff; padding: 5rem 5% 2rem; margin-top: auto; 
}
.footer-content { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; 
}
.footer-col h3 { 
    font-family: var(--font-heading); margin-bottom: 1.5rem; color: var(--secondary-color); font-size: 1.5rem;
}
.footer-col p, .footer-col a { 
    color: #ccc; text-decoration: none; margin-bottom: 0.8rem; display: block; line-height: 1.6;
}
.footer-col a:hover { 
    color: #fff; 
}
.socials { 
    display: flex; gap: 1rem; margin-top: 1.5rem; 
}
.socials a { 
    width: 45px; height: 45px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; transition: all 0.3s;
}
.socials a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}
.footer-bottom { 
    text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: #888; font-size: 0.9rem;
}
.footer-bottom a { 
    color: #ccc; text-decoration: none; margin: 0 15px; 
}
.footer-bottom a:hover {
    color: #fff;
}

/* Cookie Banner */
.cookie-banner { 
    position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); padding: 1.5rem 5%; display: none; justify-content: space-between; align-items: center; z-index: 1000; flex-wrap: wrap; gap: 1rem; border-top: 4px solid var(--primary-color);
}
.cookie-banner p { 
    max-width: 800px; color: #444; font-size: 0.95rem;
}
.cookie-buttons { 
    display: flex; gap: 1rem; flex-wrap: wrap;
}
.cookie-buttons button { 
    padding: 0.8rem 1.5rem; border: none; border-radius: 30px; cursor: pointer; font-weight: bold; font-family: var(--font-body); font-size: 0.9rem; transition: background 0.3s;
}
#accept-all { 
    background: var(--primary-color); color: #fff; 
}
#accept-all:hover {
    background: var(--accent-color);
}
#accept-necessary { 
    background: #f0f0f0; color: var(--text-color); 
}
#accept-necessary:hover {
    background: #e0e0e0;
}

/* Simple page content (Privacy, Terms, etc.) */
.page-content { 
    max-width: 800px; margin: 5rem auto; padding: 0 20px; min-height: 50vh;
}
.page-content h1 { 
    font-family: var(--font-heading); color: var(--primary-color); margin-bottom: 2rem; font-size: 3rem;
}
.page-content h2 { 
    margin-top: 2.5rem; margin-bottom: 1rem; color: var(--text-color); font-family: var(--font-heading); font-size: 1.8rem;
}
.page-content p { 
    margin-bottom: 1.5rem; color: #444; font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .block-split, .block-split.reverse { 
        flex-direction: column; gap: 2rem; text-align: center;
    }
    .block-split ul {
        text-align: left;
        display: inline-block;
    }
}
@media (max-width: 768px) {
    .hero-content h1 { 
        font-size: 2.8rem; 
    }
    .header-container { 
        flex-direction: column; gap: 1.5rem; 
    }
    nav ul { 
        flex-wrap: wrap; justify-content: center; gap: 1rem;
    }
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
    }
}