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

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

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

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

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

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c2c2c;
}

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

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

.story-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: normal;
    color: #1a1a1a;
}

.intro-lead {
    font-size: 20px;
    color: #555;
    font-style: italic;
    margin-top: 24px;
}

.story-image {
    margin: 50px 0;
    background-color: #e8e5dc;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-body {
    font-size: 18px;
    line-height: 1.8;
}

.story-body p {
    margin-bottom: 28px;
}

.story-body h2 {
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 24px;
    font-weight: normal;
    color: #1a1a1a;
}

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

.text-link {
    color: #8b7355;
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid #8b7355;
    transition: color 0.3s, border-color 0.3s;
}

.text-link:hover {
    color: #6d5a45;
    border-color: #6d5a45;
}

.inline-image {
    margin: 40px 0;
    background-color: #e8e5dc;
}

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

.testimonial-inline {
    margin: 50px 0;
    padding: 30px;
    background-color: #f9f7f3;
    border-left: 4px solid #8b7355;
}

.testimonial-inline blockquote {
    font-size: 18px;
    font-style: italic;
    color: #444;
    line-height: 1.7;
}

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

.service-card {
    margin: 40px 0;
    padding: 35px;
    background-color: #fff;
    border: 1px solid #e0ddd4;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: normal;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
}

.service-card .price {
    font-size: 22px;
    font-weight: bold;
    color: #8b7355;
    margin: 20px 0;
}

.select-service {
    padding: 12px 28px;
    background-color: #8b7355;
    color: #fff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #6d5a45;
}

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #e0ddd4;
}

.form-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: normal;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #444;
}

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

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

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

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

.disclaimer {
    margin-top: 60px;
    padding: 24px;
    background-color: #f4f1ea;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    border-left: 3px solid #d0cdc4;
}

.editorial-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 50px 30px 30px;
}

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

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-section a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

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

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

.thanks-container p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thanks-container .back-link {
    display: inline-block;
    margin-top: 30px;
    color: #8b7355;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #8b7355;
    transition: color 0.3s, border-color 0.3s;
}

.thanks-container .back-link:hover {
    color: #6d5a45;
    border-color: #6d5a45;
}

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

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

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

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.page-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.page-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #444;
}

.contact-info {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f7f3;
    border-left: 4px solid #8b7355;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #444;
}

.service-list {
    margin: 40px 0;
}

.service-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0ddd4;
}

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

.service-item h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-item .service-price {
    font-size: 20px;
    font-weight: bold;
    color: #8b7355;
    margin: 16px 0;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

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

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

    .intro-lead {
        font-size: 18px;
    }

    .story-body {
        font-size: 17px;
    }

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

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

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