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

.ad-disclosure {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.editorial-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #1a1a1a;
}

.editorial-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

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

.header-image {
    margin-bottom: 40px;
    background-color: #e8e8e8;
}

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

.header-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 22px;
    line-height: 1.5;
    color: #666;
    font-weight: 400;
    font-style: italic;
}

.page-header {
    margin-bottom: 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.page-header .subtitle {
    font-size: 20px;
}

.story-intro,
.story-body {
    margin-bottom: 50px;
}

.story-intro p,
.story-body p {
    margin-bottom: 24px;
}

.lead {
    font-size: 22px;
    line-height: 1.6;
    color: #3a3a3a;
    font-weight: 400;
    margin-bottom: 30px;
}

.story-body h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a1a1a;
}

.story-body h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #2a2a2a;
}

.story-body h4 {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #3a3a3a;
}

.story-body ul {
    margin: 25px 0;
    padding-left: 30px;
}

.story-body ul li {
    margin-bottom: 12px;
}

.inline-image-block {
    margin: 60px 0;
    background-color: #f5f5f5;
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 15px;
    color: #666;
    font-style: italic;
    text-align: center;
}

.quote-block {
    margin: 50px 0;
    padding: 40px 50px;
    background-color: #f9f9f9;
    border-left: 4px solid #2c2c2c;
}

.quote-block blockquote {
    font-size: 24px;
    line-height: 1.5;
    color: #2c2c2c;
    font-style: italic;
    font-weight: 400;
}

.quote-author {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-intro-inline {
    margin: 60px 0;
}

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

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-link:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.services-narrative {
    margin: 70px 0;
}

.service-cards-stacked {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin-top: 40px;
}

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

.service-image {
    background-color: #f0f0f0;
}

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

.service-content {
    padding: 35px;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.duration {
    font-size: 15px;
    color: #888;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin-top: 20px;
    margin-bottom: 25px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e8e8e8;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service-btn {
    padding: 12px 24px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service-btn:hover {
    background-color: #444;
    transform: translateY(-1px);
}

.select-service-btn.selected {
    background-color: #2d7a2d;
}

.form-section {
    margin: 70px 0;
    padding: 50px 40px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-section p {
    margin-bottom: 30px;
    color: #4a4a4a;
    font-size: 17px;
}

.editorial-form {
    max-width: 100%;
}

.selected-service-display {
    padding: 20px;
    background-color: #e8f5e9;
    border-left: 4px solid #2d7a2d;
    margin-bottom: 30px;
}

.selected-service-display p {
    margin-bottom: 8px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2a2a2a;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

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

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

.submit-btn {
    padding: 14px 40px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
    transform: none;
}

.closing-narrative {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.contact-info-section {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.email-display {
    font-family: 'Courier New', monospace;
    color: #2c2c2c;
    font-size: 18px;
}

.contact-note {
    font-size: 15px;
    color: #888;
    margin-top: 10px;
}

.thanks-content {
    text-align: left;
}

.thanks-message h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content {
    max-width: 800px;
}

.legal-content .story-body {
    font-size: 16px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.legal-content a {
    color: #1a5a9a;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0d3a6a;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.cookie-table td {
    background-color: #fff;
}

.editorial-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 60px 30px 30px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

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

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

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1100px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #3a3a3a;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #bbb;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #e0e0e0;
    padding: 25px 30px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #4a4a4a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2d7a2d;
    color: #fff;
}

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

.cookie-btn.reject {
    background-color: #f0f0f0;
    color: #4a4a4a;
}

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

.cookie-link {
    color: #1a5a9a;
    text-decoration: underline;
    font-size: 14px;
}

.cookie-link:hover {
    color: #0d3a6a;
}

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

    .nav-links {
        gap: 20px;
    }

    .editorial-content {
        padding: 40px 20px 60px;
    }

    .header-text h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 19px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .lead {
        font-size: 20px;
    }

    .story-body h2 {
        font-size: 26px;
    }

    .quote-block {
        padding: 30px 25px;
    }

    .quote-block blockquote {
        font-size: 20px;
    }

    .service-content {
        padding: 25px;
    }

    .service-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .form-section {
        padding: 35px 25px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-wrap: wrap;
    }

    .cookie-btn {
        flex: 1;
    }
}
