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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    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 {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #6d5637;
}

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

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

.ad-disclosure {
    background-color: #f4f1ed;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0ddd8;
}

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.editorial-flow {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.hero-image-container {
    width: 100%;
    margin-bottom: 40px;
    background-color: #e8e3db;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 400;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.narrative-section,
.insight-section,
.trust-section,
.benefits-reveal,
.services-presentation,
.disclaimer-section,
.references-section {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.content-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 40px;
    font-weight: 400;
    color: #1a1a1a;
}

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

.inline-image {
    width: 100%;
    height: auto;
    margin: 30px 0;
    display: block;
    background-color: #e8e3db;
    object-fit: cover;
}

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

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8b6f47;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #6d5637;
}

.citation {
    color: #8b6f47;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.craft-story {
    margin-bottom: 50px;
}

.testimonial-inline {
    background-color: #f4f1ed;
    padding: 50px 40px;
    margin: 60px -40px;
}

.testimonial-inline blockquote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    color: #2c2c2c;
    border-left: 4px solid #8b6f47;
    padding-left: 30px;
}

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

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
}

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

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

.service-card {
    background-color: #fff;
    padding: 30px;
    border: 1px solid #e0ddd8;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    margin-top: 0;
    font-size: 22px;
}

.service-card .price {
    font-size: 26px;
    font-weight: 700;
    color: #8b6f47;
    margin: 20px 0;
}

.select-service {
    padding: 12px 28px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

.service-card.selected {
    border-color: #8b6f47;
    box-shadow: 0 0 0 2px #8b6f47;
}

.form-section {
    margin-top: 50px;
    padding: 40px;
    background-color: #f4f1ed;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d0ccc4;
    background-color: #fff;
    font-family: 'Georgia', serif;
}

.selected-info {
    font-size: 18px;
    color: #8b6f47;
    font-weight: 600;
}

.submit-btn {
    padding: 14px 32px;
    background-color: #8b6f47;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

.disclaimer {
    font-size: 14px;
    color: #666;
    font-style: italic;
    padding: 20px;
    background-color: #f9f8f6;
    border-left: 3px solid #d0ccc4;
}

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

.references-list {
    list-style-position: inside;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.references-list a {
    color: #8b6f47;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 30px 30px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.thanks-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-page p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.thanks-page .back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #8b6f47;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.thanks-page .back-link:hover {
    background-color: #6d5637;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
}

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

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

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

.contact-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

.contact-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.contact-info {
    background-color: #f4f1ed;
    padding: 40px;
    margin-bottom: 40px;
}

.contact-info p {
    margin-bottom: 16px;
    font-size: 18px;
}

.contact-info strong {
    display: block;
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .story-content h1 {
        font-size: 32px;
    }

    .testimonial-inline {
        margin-left: -20px;
        margin-right: -20px;
        padding: 40px 20px;
    }

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