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

:root {
    --primary-color: #2c1810;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f7f4;
    --white: #ffffff;
    --border-color: #e5e5e5;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.3rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', sans-serif;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-immersive {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    background: rgba(44, 24, 16, 0.6);
    backdrop-filter: blur(3px);
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtext {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

.cta-hero:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.story-intro {
    padding: 6rem 5%;
    background: var(--white);
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-content h2 {
    margin-bottom: 2rem;
    line-height: 1.4;
}

.narrow-content p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}

.emphasis-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-top: 2rem;
    padding-left: 2rem;
    border-left: 4px solid var(--accent-color);
}

.problem-amplification {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.split-layout {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.problem-list {
    list-style: none;
    margin-top: 2rem;
}

.problem-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.insight-reveal {
    padding: 6rem 5%;
    background: var(--white);
}

.centered-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.image-showcase {
    max-width: 1400px;
    margin: 0 auto;
}

.image-showcase img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.trust-building {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.three-column-grid {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.trust-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.trust-card h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.trust-card p {
    color: rgba(255,255,255,0.9);
}

.testimonial-inline {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.testimonial-box {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: var(--white);
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    text-align: right;
    color: var(--text-light);
    font-size: 0.95rem;
}

.benefits-reveal {
    padding: 6rem 5%;
    background: var(--white);
}

.benefit-layout h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.8rem;
}

.benefit-item {
    display: flex;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
    align-items: center;
}

.benefit-item.reverse {
    flex-direction: row-reverse;
}

.benefit-item img {
    flex: 0 0 45%;
    width: 45%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-intermezzo {
    padding: 4rem 5%;
    background: var(--secondary-color);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.services-pricing {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.service-card.featured {
    border: 2px solid var(--accent-color);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    font-family: 'Helvetica Neue', sans-serif;
}

.service-card h3 {
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-select-service {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
}

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.urgency-element {
    padding: 3rem 5%;
    background: var(--white);
}

.urgency-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff3e6;
    border-left: 5px solid var(--accent-color);
    text-align: center;
}

.urgency-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', sans-serif;
}

.final-trust {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.trust-elements {
    display: flex;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-element {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.trust-element h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.form-section {
    padding: 6rem 5%;
    background: var(--white);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.order-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

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

.form-consent {
    margin-bottom: 2rem;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-consent input[type="checkbox"] {
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.btn-submit {
    width: 100%;
    padding: 1.3rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1.2rem 5%;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

.sticky-btn:hover {
    background: var(--white);
    transform: scale(1.05);
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 24, 16, 0.98);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Helvetica Neue', sans-serif;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: var(--white);
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.page-hero {
    padding: 10rem 5% 4rem;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
}

.about-content {
    padding: 4rem 5%;
    background: var(--white);
}

.content-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 2.5rem auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.about-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.services-page {
    padding: 4rem 5%;
}

.process-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', sans-serif;
}

.process-step h3 {
    margin-bottom: 0.8rem;
}

.contact-content {
    padding: 4rem 5%;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-item p {
    line-height: 1.8;
    color: var(--text-dark);
}

.map-placeholder {
    margin: 2rem 0;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.faq-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.7;
}

.thanks-hero {
    padding: 10rem 5% 6rem;
    background: var(--bg-light);
    min-height: 80vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 2rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-details h2 {
    margin-bottom: 2.5rem;
}

.next-steps {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step p {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.thanks-service {
    margin: 3rem 0;
}

.service-highlight {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    border: 2px solid var(--accent-color);
}

.service-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.thanks-note {
    background: #fff3e6;
    padding: 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.legal-page {
    padding: 4rem 5%;
    background: var(--white);
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-page h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-page ul,
.legal-page ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-page li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    font-size: 0.95rem;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: block;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .split-layout {
        flex-direction: column;
    }

    .three-column-grid {
        flex-direction: column;
    }

    .benefit-item,
    .benefit-item.reverse {
        flex-direction: column;
    }

    .benefit-item img {
        flex: 1;
        width: 100%;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .trust-elements {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .contact-grid {
        flex-direction: column;
    }

    .next-steps {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .sticky-cta {
        display: none;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .order-form {
        padding: 2rem 1.5rem;
    }

    .page-hero {
        padding: 8rem 5% 3rem;
    }
}