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

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    text-align: center;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background-color: #ffffff;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c2c2c;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.hero-editorial {
    max-width: 720px;
    margin: 4rem auto 3rem;
    padding: 0 1.5rem;
}

.hero-text-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
}

.hero-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.hero-image {
    margin: 2.5rem 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.text-story,
.insight-block,
.problem-expand,
.value-reveal,
.approach-section,
.trust-building,
.services-editorial,
.form-section,
.urgency-soft,
.final-encouragement {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.story-narrow p,
.insight-narrow p,
.problem-narrow p,
.value-narrow p,
.approach-narrow p,
.trust-narrow p,
.services-narrow p,
.form-narrow p,
.urgency-narrow p,
.final-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-narrow p strong,
.insight-narrow p strong,
.problem-narrow p strong,
.approach-narrow p strong {
    font-weight: 600;
    color: #1a1a1a;
}

.story-narrow p em,
.insight-narrow p em {
    font-style: italic;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.3;
}

.inline-image {
    margin: 2.5rem 0;
}

.inline-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.inline-cta {
    display: inline-block;
    color: #4a7c59;
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 1rem;
    border-bottom: 1px solid #4a7c59;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #3d6849;
    border-bottom-color: #3d6849;
}

.testimonial-inline {
    background-color: #f5f5f3;
    border-left: 4px solid #4a7c59;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.benefit-list {
    list-style: none;
    margin: 2rem 0;
}

.benefit-list li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.1rem;
}

.benefit-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

.section-cta {
    display: inline-block;
    background-color: #4a7c59;
    color: white;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1.5rem;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.section-cta:hover {
    background-color: #3d6849;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.3rem;
    color: #4a7c59;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    background-color: #2c2c2c;
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #1a1a1a;
}

.selected-service-text {
    background-color: #f0f7f2;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: #2c2c2c;
}

.editorial-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #2c2c2c;
    font-weight: 500;
}

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

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

.submit-btn {
    background-color: #4a7c59;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.final-cta {
    display: inline-block;
    background-color: #2c2c2c;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1.5rem;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

.final-cta:hover {
    background-color: #1a1a1a;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-content p {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.contact-page-content,
.about-page-content,
.services-page-content,
.policy-page-content {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.contact-page-content h1,
.about-page-content h1,
.services-page-content h1,
.policy-page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-info {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    margin-bottom: 2rem;
}

.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1a1a;
}

.contact-info-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-listing {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.service-listing h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.service-listing .price {
    font-size: 1.2rem;
    color: #4a7c59;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-listing p {
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.policy-page-content p,
.policy-page-content ul {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-page-content ul {
    padding-left: 2rem;
}

.policy-page-content li {
    margin-bottom: 0.5rem;
}

.thanks-container {
    max-width: 720px;
    margin: 5rem auto;
    padding: 0 1.5rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.thanks-details {
    background-color: #f0f7f2;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.thanks-details p {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.back-home {
    display: inline-block;
    background-color: #4a7c59;
    color: white;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 2rem;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.back-home:hover {
    background-color: #3d6849;
}

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

    .nav-links {
        gap: 1rem;
    }

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

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

    h2 {
        font-size: 1.6rem;
    }

    .story-narrow p,
    .insight-narrow p,
    .problem-narrow p,
    .value-narrow p,
    .approach-narrow p,
    .trust-narrow p,
    .services-narrow p {
        font-size: 1rem;
    }

    .testimonial-inline {
        padding: 1rem 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .editorial-form {
        padding: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-content {
        padding: 1rem;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text-narrow h1 {
        font-size: 1.7rem;
    }

    .text-story,
    .insight-block,
    .problem-expand,
    .value-reveal,
    .approach-section,
    .trust-building,
    .services-editorial,
    .form-section,
    .urgency-soft,
    .final-encouragement {
        padding: 2rem 1rem;
    }
}