* {
    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;
    display: none;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

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

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

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.header-editorial {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

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

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

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

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

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

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

.hero-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.hero-text-centered {
    text-align: center;
    padding: 0 20px;
}

.hero-text-centered h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    font-style: italic;
}

.story-intro,
.problem-section,
.insight-section,
.trust-building,
.benefits-reveal,
.services-pricing,
.form-section,
.final-story,
.disclaimer-section,
.references-section {
    margin-bottom: 80px;
}

.narrow-text {
    max-width: 100%;
}

.narrow-text p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.8;
}

.opening-line {
    font-size: 22px;
    font-style: italic;
    color: #4a7c59;
    margin-bottom: 28px;
}

.narrow-text h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #1a1a1a;
    line-height: 1.3;
}

.narrow-text h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.inline-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 12px;
}

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

.inline-cta {
    display: inline-block;
    margin: 30px 0;
    padding: 14px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.inline-cta:hover {
    background-color: #3d6649;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #4a7c59;
}

.testimonial-inline blockquote {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.testimonial-inline cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
}

.benefits-list {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.benefits-list li {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
    padding-left: 30px;
    position: relative;
}

.benefits-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-size: 28px;
    line-height: 1;
}

.service-card-editorial {
    margin: 40px 0;
    padding: 32px;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
}

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

.service-card-editorial p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.btn-service {
    padding: 12px 28px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.editorial-form {
    margin-top: 40px;
    padding: 40px;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
}

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

.btn-submit {
    padding: 14px 40px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #666;
    padding: 20px;
    background-color: #f5f5f5;
    border-left: 3px solid #999;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
}

.references-list a {
    color: #4a7c59;
    text-decoration: none;
}

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

.footer-editorial {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 30px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4a7c59;
}

.footer-note {
    font-size: 13px;
    color: #999;
}

.thanks-container {
    max-width: 720px;
    margin: 100px auto;
    padding: 60px 30px;
    text-align: center;
    background-color: #ffffff;
}

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

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

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.thanks-container a:hover {
    background-color: #3d6649;
}

.page-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 30px;
    background-color: #ffffff;
}

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

.page-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.page-container p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
}

.page-container ul {
    margin: 20px 0;
    padding-left: 30px;
}

.page-container li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.6;
}

.contact-info-box {
    margin: 40px 0;
    padding: 30px;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
}

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

.contact-info-box p {
    margin-bottom: 12px;
    font-size: 16px;
}

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

    .nav-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

    .narrow-text h2 {
        font-size: 26px;
    }

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

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