:root {
    --color-primary: #1B1F3B;
    --color-secondary: #3A4175;
    --color-accent: #B87333;
    --color-bg: #F5F5F8;
    --color-surface: #FFFFFF;
    --color-text: #141627;
    --color-text-light: #5C5F75;
    --font-heading: Georgia, 'Times New Roman', serif;
    --font-body: system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.5rem;
    color: var(--color-primary);
}

h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

h5 {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Header */
.header {
    background-color: var(--color-surface);
    border-bottom: 1px solid #e1e5e9;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    margin: 0;
    font-size: 1.5rem;
}

.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Drawer */
.nav-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--color-surface);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 200;
    transition: right 0.3s ease;
}

.nav-drawer.active {
    right: 0;
}

.nav-drawer-content {
    padding: 2rem;
    padding-top: 6rem;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin-bottom: 1rem;
}

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.125rem;
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e1e5e9;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-accent);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: var(--color-surface);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

/* Sections */
section {
    padding: 100px 0;
}

.content, .services, .contact, .features {
    background-color: var(--color-surface);
}

.section-divider {
    border: none;
    height: 1px;
    background-color: #e1e5e9;
    margin: 3rem 0;
}

/* Features */
.feature-item {
    margin-bottom: 3rem;
}

.feature-left .feature-content {
    text-align: left;
}

.feature-right .feature-content {
    text-align: right;
}

.feature-content {
    padding: 2rem;
    background-color: var(--color-bg);
    border: 1px solid #e1e5e9;
    border-radius: 0;
}

.feature-content:hover {
    border-color: var(--color-accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-accent);
    color: var(--color-surface);
    text-decoration: none;
    border: none;
    border-radius: 8px;
    border-bottom: 3px solid #9b6129;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
}

.btn:hover {
    background-color: #9b6129;
    border-bottom-width: 0;
    transform: translateY(3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-bottom: 3px solid var(--color-accent);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-surface);
    border-bottom-width: 0;
    transform: translateY(3px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--color-primary);
    border-bottom-color: var(--color-secondary);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
}

/* Forms */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    background-color: var(--color-surface);
    color: var(--color-text);
    min-height: 44px;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: var(--color-surface);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--color-surface);
    margin-bottom: 1rem;
}

.footer-col h5 {
    color: var(--color-surface);
    margin-bottom: 1rem;
}

.footer-col p {
    color: #b0b7c3;
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #b0b7c3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid var(--color-secondary);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #b0b7c3;
    margin: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: var(--color-surface);
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* CTA Section */
.cta {
    text-align: center;
    background-color: var(--color-bg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    section {
        padding: 60px 0;
    }

    .feature-left .feature-content,
    .feature-right .feature-content {
        text-align: left;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
    }

    .hero h2 {
        font-size: 1.75rem;
    }

    section {
        padding: 40px 0;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}