* {
    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;
}

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

a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8b6f47;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

.ad-label {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.7rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.editorial-content {
    background-color: #ffffff;
}

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

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

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

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

.hero-text-overlay h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    max-width: 800px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 700px;
    opacity: 0.95;
}

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

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-intro {
    padding: 3rem 0 4rem;
}

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

.opening-line {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 400;
}

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

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

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

.inline-image {
    margin: 3rem 0;
    background-color: #f5f1ed;
}

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

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

.insight-box {
    background-color: #f8f5f1;
    border-left: 4px solid #8b6f47;
    padding: 2rem;
    margin: 2.5rem 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
}

.services-preview {
    margin: 3rem 0;
}

.service-card-inline {
    background-color: #fafafa;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e8e8e8;
}

.service-card-inline h3 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price-reveal {
    font-size: 1.4rem;
    font-weight: 600;
    color: #8b6f47;
    margin-top: 1rem;
}

.editorial-form {
    background-color: #f8f5f1;
    padding: 3rem 2.5rem;
    margin: 3rem 0;
}

.form-intro {
    margin-bottom: 2rem;
}

.form-intro p {
    font-size: 1rem;
    line-height: 1.6;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.submit-btn:hover {
    background-color: #8b6f47;
}

.disclaimer-section {
    margin: 4rem 0 2rem;
    padding: 2rem;
    background-color: #f0f0f0;
    border-top: 2px solid #d0d0d0;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.cta-inline {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-inline p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-link {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #8b6f47;
    color: #ffffff;
    margin: 0.5rem;
    transition: background-color 0.3s ease;
}

.cta-link:hover {
    background-color: #a38456;
    color: #ffffff;
}

.service-detail {
    margin-bottom: 4rem;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #8b6f47;
    margin-bottom: 1.5rem;
}

.contact-info-block {
    background-color: #f8f5f1;
    padding: 2.5rem;
    margin: 2rem 0;
}

.contact-info-block h2 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.contact-info-block h2:first-child {
    margin-top: 0;
}

.email-display {
    color: #2c2c2c;
    font-family: 'Courier New', monospace;
    background-color: #f0f0f0;
    padding: 0.5rem 1rem;
    display: inline-block;
}

.legal-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

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

.last-updated {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.thanks-content {
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-service-info {
    background-color: #f8f5f1;
    padding: 2rem;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #ffffff;
    opacity: 0.8;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 2rem;
    flex-wrap: wrap;
}

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

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #a38456;
}

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .article-hero {
        height: 400px;
    }

    .opening-line {
        font-size: 1.2rem;
    }

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

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

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

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