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

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

.editorial-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-right a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-right a:hover {
    color: #8b4513;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

.article-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    margin-bottom: 4rem;
    overflow: hidden;
}

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

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 3rem 2rem;
}

.hero-text-overlay h1 {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 400;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.story-intro {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.lead-paragraph {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.narrow-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    font-weight: 600;
    color: #1a1a1a;
}

.narrow-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
    color: #2c2c2c;
}

.inline-image-wide {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.inline-image-narrow {
    max-width: 600px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.inline-image-wide img,
.inline-image-narrow img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e8dcc8;
    object-fit: cover;
}

figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.insight-block {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem 3rem;
    background-color: #f9f7f4;
    border-left: 4px solid #8b4513;
}

.insight-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.insight-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.service-card-inline {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-card-inline h3 {
    margin-top: 0;
}

.service-price {
    font-size: 1.3rem;
    color: #8b4513;
    font-weight: 600;
    margin: 1.5rem 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-inline {
    background-color: #8b4513;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 3px;
}

.cta-inline:hover {
    background-color: #6d3410;
}

.testimonial-inline {
    margin: 4rem auto;
    padding: 2.5rem 2rem;
    background-color: #fff;
    border-left: 3px solid #d4a574;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.citation {
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.references-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.references-list {
    margin-left: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    line-height: 1.8;
}

.references-list li {
    margin-bottom: 0.8rem;
}

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

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

.disclaimer-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.editorial-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 3px;
    background-color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.submit-button {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.1rem 3rem;
    border: none;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 3px;
}

.submit-button:hover {
    background-color: #333;
}

.site-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 4rem 2rem 2rem 2rem;
    margin-top: 6rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #8b4513;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #6d3410;
}

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

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

.cookie-learn {
    color: #d4a574;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-learn:hover {
    text-decoration: underline;
}

.thanks-page {
    max-width: 700px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-page p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.thanks-page .back-link {
    display: inline-block;
    margin-top: 2rem;
    color: #8b4513;
    text-decoration: none;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thanks-page .back-link:hover {
    text-decoration: underline;
}

.legal-page {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
}

.legal-page p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    line-height: 1.7;
}

.legal-page li {
    margin-bottom: 0.6rem;
}

.contact-page {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-info-section {
    margin: 3rem 0;
}

.contact-info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    padding: 1.5rem;
    background-color: #f9f7f4;
    border-left: 3px solid #8b4513;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.info-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

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

    .nav-right {
        gap: 1rem;
    }

    .nav-right a {
        font-size: 0.85rem;
    }

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

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

    .narrow-content {
        padding: 0 1.5rem;
    }
}