/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

a {
    color: #8b5a3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5c3d28;
}

/* Ad Notice */
.ad-notice {
    background-color: #f4f4f4;
    border-bottom: 1px solid #ddd;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    font-family: 'Arial', sans-serif;
}

/* Navigation */
.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c2c2c;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #555;
    transition: color 0.3s ease;
}

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

/* Editorial Content - Main Container */
.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

/* Narrow Column for Editorial Style */
.narrow-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 60px;
}

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

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

.hero-text {
    text-align: center;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.lead {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

/* Page Header */
.page-header {
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: normal;
}

.legal-date {
    font-size: 0.9rem;
    color: #888;
    font-family: 'Arial', sans-serif;
}

/* Story Sections */
.story-intro,
.problem-section,
.insight-section,
.trust-section,
.reveal-section,
.form-section,
.disclaimer-section,
.about-intro,
.philosophy-section,
.team-section,
.values-section,
.closing-section,
.services-intro,
.services-detailed,
.contact-info-section,
.visit-note,
.thanks-section {
    padding: 50px 0;
}

.story-intro p,
.problem-section p,
.insight-section p,
.trust-section p,
.reveal-section p,
.about-intro p,
.philosophy-section p,
.team-section p,
.values-section p,
.closing-section p,
.services-intro p,
.contact-info-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #333;
}

h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    margin-top: 40px;
    font-weight: normal;
    color: #1a1a1a;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: normal;
    color: #2c2c2c;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: #2c2c2c;
}

/* Inline Images */
.inline-image {
    margin: 40px 0;
    width: 100%;
    background-color: #e8e8e8;
    border-radius: 4px;
}

/* Quote Block */
.quote-block {
    margin: 50px 0;
    padding: 30px 40px;
    border-left: 4px solid #8b5a3c;
    background-color: #f9f9f9;
}

.quote-block blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    color: #444;
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 30px 0;
    padding-left: 0;
}

.feature-list li {
    font-size: 1.05rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b5a3c;
    font-size: 1.5rem;
    line-height: 1.3;
}

.feature-list li strong {
    color: #2c2c2c;
}

/* Inline CTA */
.inline-cta {
    margin: 40px 0;
    text-align: center;
}

.cta-link {
    display: inline-block;
    padding: 15px 35px;
    background-color: #8b5a3c;
    color: #fff;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #5c3d28;
    color: #fff;
}

.cta-link.secondary {
    background-color: #fff;
    color: #8b5a3c;
    border: 2px solid #8b5a3c;
}

.cta-link.secondary:hover {
    background-color: #8b5a3c;
    color: #fff;
}

/* Testimonial Cards */
.testimonial-inline {
    background-color: #f5f5f5;
    padding: 60px 0;
    margin: 60px 0;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 3px solid #8b5a3c;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-card cite {
    font-size: 0.95rem;
    color: #777;
    font-style: normal;
}

/* Services Editorial */
.services-editorial {
    margin-top: 40px;
}

.service-block {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
}

.service-block:last-child {
    border-bottom: none;
}

.service-block h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-price {
    font-size: 1.4rem;
    color: #8b5a3c;
    font-weight: bold;
    margin: 10px 0 20px;
}

.service-block p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-select-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #fff;
    color: #8b5a3c;
    border: 2px solid #8b5a3c;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.service-select-btn:hover {
    background-color: #8b5a3c;
    color: #fff;
}

/* Service Detail */
.service-detail {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-child {
    border-bottom: none;
}

/* Form Section */
.form-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin: 60px 0;
}

.editorial-form {
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5a3c;
}

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

.submit-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #8b5a3c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #5c3d28;
}

.form-notice {
    font-size: 0.85rem;
    color: #777;
    margin-top: 20px;
    line-height: 1.5;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #fff9f5;
    padding: 40px 0;
    margin-top: 60px;
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

/* Contact Blocks */
.contact-block {
    margin-bottom: 50px;
}

.contact-block h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.email-display {
    color: #2c2c2c;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.small-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
}

/* Thanks Page */
.thanks-section {
    text-align: center;
    padding: 80px 0;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-content {
    margin: 40px 0;
    text-align: left;
}

.thanks-actions {
    margin: 50px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-reminder {
    margin-top: 60px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

#service-confirmation {
    padding: 20px;
    background-color: #f0f7ff;
    border-left: 4px solid #8b5a3c;
    margin: 30px 0;
    font-size: 1.05rem;
}

/* Legal Pages */
.legal-page {
    background-color: #fff;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #444;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.cookie-table tr:nth-child(even) {
    background-color: #fafafa;
}

/* Footer */
.main-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

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

.footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

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

.cookie-btn.reject {
    background-color: #555;
    color: #fff;
}

.cookie-btn:hover {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .lead {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .narrow-column {
        padding: 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }

    .thanks-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}