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

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --text-dark: #2C1810;
    --text-light: #5D4037;
    --bg-cream: #FFF8F0;
    --bg-white: #FFFFFF;
    --border-color: #E6D5C3;
}

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

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

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

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

.nav-minimal {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.editorial-flow {
    max-width: 100%;
}

.hero-editorial {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 60px 20px 40px;
}

.hero-overlay h1 {
    color: white;
    font-size: 42px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.3;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-gap {
    margin-top: 80px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.content-narrow p {
    margin-bottom: 20px;
    font-size: 18px;
}

.content-narrow h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.2;
}

.content-narrow h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.inline-cta-soft {
    margin: 40px 0;
    text-align: center;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
}

.emphasis-text {
    font-style: italic;
    font-size: 20px;
    color: var(--text-light);
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    margin: 30px 0;
}

.story-highlight {
    background: var(--bg-cream);
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.story-highlight p {
    margin: 0;
    font-size: 20px;
}

.testimonial-inline {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
}

.testimonial-inline blockquote {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

.testimonial-inline blockquote p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.testimonial-inline cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 16px;
}

.cta-inline-block {
    margin: 40px 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

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

.benefit-list {
    margin-top: 40px;
}

.benefit-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 17px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
}

.service-card p {
    padding: 0 20px;
    font-size: 16px;
    margin-bottom: 10px;
}

.service-card .price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    padding: 10px 20px;
}

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-select.selected {
    background: var(--primary-color);
}

.order-form {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: bold;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Georgia', serif;
}

.btn-full {
    width: 100%;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

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

.final-cta-section {
    max-width: 700px;
    margin: 100px auto 60px;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-cream);
    border-radius: 8px;
}

.final-cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.final-cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-large {
    padding: 20px 50px;
    font-size: 20px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

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

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 20px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--bg-white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.thanks-page {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 20px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-page p {
    font-size: 20px;
    margin-bottom: 30px;
}

.contact-info {
    max-width: 700px;
    margin: 40px auto;
    padding: 0 20px;
}

.contact-item {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-cream);
    border-radius: 8px;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.legal-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.legal-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        border-top: 1px solid var(--border-color);
    }

    .nav-menu li a {
        display: block;
        padding: 15px 20px;
    }

    .hero-image-wrapper {
        height: 350px;
    }

    .hero-overlay h1 {
        font-size: 28px;
    }

    .lead-text {
        font-size: 20px;
    }

    .content-narrow h2 {
        font-size: 28px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        flex-direction: column;
    }

    .final-cta-section h2 {
        font-size: 28px;
    }

    .order-form {
        padding: 20px;
    }
}

@media (min-width: 769px) {
    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        width: calc(50% - 15px);
    }
}
