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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #d4a574;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.cookie-banner.hidden {
    display: none;
}

.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 {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #8b6f47;
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-cookie {
    background-color: #8b6f47;
    color: #fff;
}

.btn-cookie:hover {
    background-color: #6f5838;
}

.btn-cookie-reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.btn-cookie-reject:hover {
    background-color: #c0c0c0;
}

.site-header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.ad-disclosure {
    background-color: #f5f0eb;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
}

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

.brand {
    font-size: 24px;
    font-weight: bold;
    color: #8b6f47;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b6f47;
}

.editorial-layout {
    background-color: #fff;
}

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

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #f5e6d3;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
}

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.lead-text {
    font-size: 22px;
    font-style: italic;
}

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

.content-narrow h2 {
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 24px;
    color: #3a3a3a;
}

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

.inline-image {
    margin: 50px 0;
    background-color: #f5e6d3;
}

.inline-image img {
    width: 100%;
    height: auto;
}

.testimonial-inline {
    background-color: #f9f6f2;
    border-left: 4px solid #d4a574;
    padding: 30px;
    margin: 50px 0;
    font-style: italic;
    font-size: 19px;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 16px;
    color: #666;
}

.benefit-list {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.benefit-list li {
    padding: 15px 0;
    padding-left: 30px;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: bold;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b6f47;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #6f5838;
}

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

.service-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    background-color: #faf8f5;
}

.service-card img {
    width: 100%;
    height: 300px;
}

.service-card h3 {
    font-size: 24px;
    margin: 20px 20px 10px;
    color: #3a3a3a;
}

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

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: #8b6f47;
    margin: 20px 20px 15px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #1a1a1a;
}

.btn-select-service.selected {
    background-color: #8b6f47;
}

.process-steps {
    margin: 30px 0;
    padding-left: 20px;
}

.process-steps li {
    margin: 15px 0;
    font-size: 18px;
}

.faq-section {
    margin: 30px 0;
}

.faq-item {
    margin: 30px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.order-form {
    background-color: #f9f6f2;
    padding: 40px;
    margin: 40px 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #3a3a3a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: inherit;
}

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #8b6f47;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #6f5838;
}

.btn-submit:disabled {
    background-color: #c0c0c0;
    cursor: not-allowed;
}

.disclaimer {
    background-color: #fff9f0;
    border: 1px solid #e5d5b7;
    padding: 30px;
    margin: 60px 0;
}

.disclaimer h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #8b6f47;
}

.disclaimer p {
    font-size: 15px;
    line-height: 1.6;
}

.references {
    margin: 50px 0;
    padding: 30px;
    background-color: #f5f5f5;
}

.references h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.references ol {
    padding-left: 20px;
}

.references li {
    margin: 10px 0;
    font-size: 15px;
}

.references a {
    color: #8b6f47;
}

.site-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column p {
    margin: 8px 0;
    font-size: 15px;
}

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

.footer-column ul li {
    margin: 8px 0;
}

.footer-column a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 32px;
    }

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

    .content-narrow {
        padding: 40px 20px;
    }

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

    .nav-links {
        display: none;
    }

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