:root {
    --color-primary: #1a3c34;
    --color-secondary: #c9a962;
    --color-accent: #8b4513;
    --color-bg-light: #faf8f5;
    --color-bg-dark: #1a3c34;
    --color-text: #2d2d2d;
    --color-text-light: #f5f5f5;
    --color-border: #e0d8cf;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

.header {
    background-color: var(--color-bg-dark);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.ad-disclosure {
    background-color: var(--color-secondary);
    color: var(--color-bg-dark);
    padding: 6px 12px;
    font-size: 11px;
    text-align: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-secondary);
    font-weight: 400;
    letter-spacing: 1px;
}

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

.nav-list a {
    color: var(--color-text-light);
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 8px 0;
    display: block;
}

.nav-list a:hover {
    color: var(--color-secondary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-light);
    margin: 5px 0;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--color-bg-light);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    color: var(--color-primary);
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 400;
}

.hero-content p {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-image {
    flex: 1;
    background-color: var(--color-border);
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-primary:hover {
    background-color: var(--color-accent);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.section-split {
    display: flex;
    min-height: 70vh;
}

.section-split.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.split-image {
    flex: 1;
    background-color: var(--color-border);
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.section-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.section-dark h2 {
    color: var(--color-secondary);
}

h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 24px;
    font-weight: 400;
}

h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 400;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 48px;
}

.service-card {
    flex: 1 1 320px;
    background-color: #fff;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 220px;
    background-color: var(--color-border);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 32px;
}

.service-content h3 {
    margin-bottom: 12px;
}

.service-price {
    font-size: 24px;
    color: var(--color-secondary);
    font-weight: 700;
    margin: 16px 0;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
}

.testimonial-section {
    background-color: var(--color-bg-dark);
    padding: 100px 0;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 300px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-left: 4px solid var(--color-secondary);
}

.testimonial-card p {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--color-text-light);
}

.testimonial-author {
    color: var(--color-secondary);
    font-weight: 600;
}

.form-section {
    background-color: #fff;
}

.form-container {
    max-width: 600px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--color-border);
    font-family: inherit;
    font-size: 16px;
    background-color: var(--color-bg-light);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 400;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.disclaimer {
    background-color: var(--color-border);
    padding: 24px;
    margin-top: 40px;
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 24px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
}

.cookie-text a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--color-secondary);
    color: var(--color-bg-dark);
}

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

.page-header {
    background-color: var(--color-bg-dark);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--color-secondary);
    font-weight: 400;
}

.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-bg-dark);
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.thanks-content h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 24px;
    font-weight: 400;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.feature-text p {
    color: #666;
    font-size: 15px;
}

.cta-section {
    background-color: var(--color-secondary);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-bg-dark);
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--color-bg-dark);
    margin-bottom: 32px;
    font-size: 18px;
}

.cta-section .btn-primary {
    background-color: var(--color-bg-dark);
}

.cta-section .btn-primary:hover {
    background-color: var(--color-accent);
}

.about-values {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.value-item {
    flex: 1 1 250px;
    text-align: center;
    padding: 40px 24px;
    background-color: #fff;
    border: 1px solid var(--color-border);
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.email-display {
    color: var(--color-primary);
    font-weight: 600;
}

@media (max-width: 900px) {
    .hero-split,
    .section-split {
        flex-direction: column;
    }

    .section-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .split-content {
        padding: 60px 24px;
    }

    .hero-image,
    .split-image {
        min-height: 400px;
        position: relative;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 32px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-list {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding-top: 16px;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-list a {
        padding: 16px 0;
    }

    .footer-grid {
        gap: 40px;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .services-grid {
        gap: 24px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-grid {
        gap: 24px;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

    .page-header h1 {
        font-size: 32px;
    }
}
