
:root {
    --primary: #6b4c35;
    --secondary: #a07855;
    --bg-light: #faf8f5;
    --text-dark: #2c251e;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}
nav a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 20px;
    font-weight: 600;
}
nav a:hover {
    color: var(--secondary);
}

/* Hero */
.hero {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}
.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero .subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #dfd5c6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 15px 35px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-primary:hover {
    background: #8b6646;
}
.btn-secondary {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
}

/* Sections */
.content-section, .author-section {
    padding: 60px 0;
    text-align: center;
}
.content-section h2, .author-section h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.features-grid {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}
.feature-card {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-top: 4px solid var(--secondary);
}
.feature-card h3 {
    color: var(--primary);
}

/* CTA Section */
.cta-section {
    background: #e6ede7;
    text-align: center;
    padding: 60px 0;
    border-top: 2px dashed #4a7356;
    border-bottom: 2px dashed #4a7356;
}
.lead-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.lead-form input {
    padding: 15px;
    font-size: 16px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.privacy-note {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

/* Disclaimer */
.disclaimer-box {
    background: var(--white);
    border-left: 5px solid #d9534f;
    padding: 20px;
    margin-top: 30px;
    text-align: left;
    font-size: 14px;
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: #aaa;
    text-align: center;
    padding: 30px 0;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
}
.footer-links a:hover {
    color: var(--white);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 37, 30, 0.95);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    z-index: 1000;
}
.cookie-banner p { margin: 0; font-size: 14px; }
.cookie-banner a { color: var(--secondary); }

@media (max-width: 768px) {
    .features-grid, .lead-form { flex-direction: column; }
    .lead-form input { width: 100%; }
}
