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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin-right: 20px;
    font-size: 14px;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #4a7c59;
    color: white;
}

.btn-accept:hover {
    background-color: #3d6649;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid #666;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c2c2c;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 11px;
    color: #999;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
}

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

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4a7c59;
}

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

.story-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-editorial {
    margin-bottom: 60px;
    text-align: left;
}

.hero-image-container {
    width: 100%;
    margin-bottom: 40px;
    background-color: #f0f0f0;
    overflow: hidden;
    border-radius: 4px;
}

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

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-top: 16px;
    font-style: italic;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 32px;
    margin: 50px 0 24px 0;
    color: #1a1a1a;
    font-weight: 600;
}

.content-block h3 {
    font-size: 24px;
    margin: 36px 0 16px 0;
    color: #2c2c2c;
    font-weight: 600;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #3a3a3a;
}

.content-block ul {
    margin: 20px 0 24px 24px;
    list-style-type: disc;
}

.content-block ul li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.inline-image {
    margin: 50px 0;
    width: 100%;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

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

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

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

.btn-primary,
.btn-secondary,
.btn-text-link {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.btn-primary {
    background-color: #4a7c59;
    color: white;
    margin: 0 8px;
}

.btn-primary:hover {
    background-color: #3d6649;
}

.btn-secondary {
    background-color: transparent;
    color: #4a7c59;
    border: 2px solid #4a7c59;
    margin: 0 8px;
}

.btn-secondary:hover {
    background-color: #4a7c59;
    color: white;
}

.btn-text-link {
    background-color: transparent;
    color: #4a7c59;
    padding: 0;
    font-size: 18px;
    border-bottom: 2px solid #4a7c59;
    border-radius: 0;
}

.btn-text-link:hover {
    color: #3d6649;
    border-bottom-color: #3d6649;
}

.service-story {
    margin: 50px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #4a7c59;
}

.service-story h3 {
    margin-top: 0;
}

.price-inline {
    font-size: 20px;
    font-weight: bold;
    color: #4a7c59;
    margin-top: 20px;
}

.testimonial {
    margin: 40px 0;
    padding: 30px;
    background-color: #f5f5f5;
    border-left: 4px solid #d0d0d0;
    font-style: italic;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
}

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

.form-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

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

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

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #ffffff;
}

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

.disclaimer-section {
    margin-top: 60px;
    padding: 30px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.service-detail {
    margin: 60px 0;
}

.service-price {
    font-size: 22px;
    font-weight: bold;
    color: #4a7c59;
    margin: 16px 0 24px 0;
}

.contact-info {
    margin: 40px 0;
    padding: 24px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.contact-info h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info .note {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-top: 12px;
}

.faq-item {
    margin: 30px 0;
    padding: 24px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.faq-item h3 {
    margin-top: 0;
    font-size: 20px;
}

.faq-item p {
    font-size: 17px;
}

.thanks-message {
    padding: 40px;
    background-color: #f0f8f4;
    border-radius: 4px;
    border: 2px solid #4a7c59;
}

.thanks-message h2 {
    color: #4a7c59;
    margin-top: 0;
}

.service-confirmation {
    margin: 24px 0;
    padding: 16px;
    background-color: #ffffff;
    border-radius: 4px;
}

.service-selected {
    font-size: 18px;
    color: #2c2c2c;
}

.legal-content {
    max-width: 100%;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 16px 0;
}

.legal-content p,
.legal-content li {
    font-size: 17px;
}

.legal-content ul {
    margin: 16px 0 24px 30px;
}

.update-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 15px;
    color: #666;
}

.site-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 50px 0 20px 0;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

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

    .main-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-editorial h1 {
        font-size: 32px;
    }

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

    .content-block h2 {
        font-size: 26px;
    }

    .content-block p,
    .content-block ul li {
        font-size: 17px;
    }

    .story-container {
        padding: 40px 20px;
    }

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

    .cookie-content p {
        margin-bottom: 16px;
    }

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

    .cta-inline {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        margin: 0;
        width: 100%;
        text-align: center;
    }
}