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

:root {
    --primary-color: #2c3e50;
    --accent-color: #e67e22;
    --bg-color: #fcfcfc;
    --text-color: #333;
    --light-gray: #ecf0f1;
    --dark-gray: #95a5a6;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

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

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #d35400;
}

/* Content Blocks (Bento-like / Asymmetric) */
.content-section {
    padding: 60px 0;
}

.block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.block.reverse {
    flex-direction: row-reverse;
}

.block-text {
    flex: 1;
}

.block-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.block-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.block-img img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

/* Form Section */
.subscription-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.subscription-section h2 {
    margin-bottom: 30px;
}

.subscription-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subscription-form input {
    padding: 12px;
    border-radius: var(--radius);
    border: none;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: #222;
    color: #ccc;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-col p, .footer-col a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

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

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 20px;
    display: none; /* Hidden by default, shown by JS */
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-btn {
    padding: 8px 20px;
    border: 1px solid white;
    background: transparent;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

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

/* Responsive */
@media (max-width: 768px) {
    .block, .block.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links {
        display: none; /* Simplified mobile menu for now */
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}
