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

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

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', sans-serif;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    font-family: 'Helvetica Neue', sans-serif;
    transition: color 0.3s;
}

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

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

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

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

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

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

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

.editorial-intro {
    margin-bottom: 60px;
}

.editorial-intro p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #333;
}

.editorial-intro h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.inline-image-block {
    margin: 48px 0;
}

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

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

.services-reveal {
    margin: 80px 0;
}

.services-reveal h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.services-reveal > p {
    font-size: 18px;
    margin-bottom: 48px;
    color: #333;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

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

.card-image-wrapper {
    width: 100%;
    background-color: #e9e9e9;
    margin-bottom: 24px;
    overflow: hidden;
}

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

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.price-tag {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2a5a3c;
    margin-bottom: 24px;
    font-family: 'Helvetica Neue', sans-serif;
}

.select-service-btn {
    background-color: #2a5a3c;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Helvetica Neue', sans-serif;
    transition: background-color 0.3s;
}

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

.trust-building {
    margin: 80px 0;
}

.trust-building h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #1a1a1a;
}

.testimonial-inline {
    margin-bottom: 40px;
    padding-left: 24px;
    border-left: 4px solid #2a5a3c;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 12px;
}

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

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

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

.form-section > p {
    font-size: 16px;
    margin-bottom: 32px;
    color: #555;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    color: #333;
    font-family: 'Helvetica Neue', sans-serif;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: 'Georgia', serif;
}

.form-group input[readonly] {
    background-color: #f4f4f4;
    cursor: not-allowed;
}

.submit-btn {
    background-color: #2a5a3c;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 17px;
    cursor: pointer;
    font-family: 'Helvetica Neue', sans-serif;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #1f4429;
}

.disclaimer-section {
    margin: 60px 0;
    padding: 32px;
    background-color: #fffbf0;
    border-left: 4px solid #d4a017;
}

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

.editorial-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

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

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

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

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

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #333;
    margin: 0;
}

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    font-family: 'Helvetica Neue', sans-serif;
    transition: background-color 0.3s;
}

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

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

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

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

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

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

.header-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #333;
}

.about-content h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.services-detail {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
}

.service-detail-content {
    margin-top: 24px;
}

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

.price-display {
    font-size: 24px;
    font-weight: 700;
    color: #2a5a3c;
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', sans-serif;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.services-cta {
    margin-top: 60px;
    padding: 40px;
    background-color: #f9f9f9;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.services-cta p {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
}

.cta-link {
    display: inline-block;
    background-color: #2a5a3c;
    color: #fff;
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Helvetica Neue', sans-serif;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #1f4429;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

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

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

.email-display {
    color: #2a5a3c;
    font-weight: 500;
}

.contact-note {
    margin-top: 48px;
    padding: 32px;
    background-color: #f9f9f9;
    border-left: 4px solid #2a5a3c;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.contact-note a {
    color: #2a5a3c;
    text-decoration: underline;
}

.thanks-content {
    text-align: center;
    padding: 60px 24px;
}

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

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 24px;
}

.service-confirmation {
    margin: 32px 0;
    padding: 24px;
    background-color: #e8f5e9;
    border-left: 4px solid #2a5a3c;
}

.service-selected {
    font-size: 17px;
    color: #1a1a1a;
}

.back-link {
    display: inline-block;
    margin-top: 32px;
    color: #2a5a3c;
    text-decoration: underline;
    font-size: 16px;
    transition: color 0.3s;
}

.back-link:hover {
    color: #1f4429;
}

.legal-page {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 8px;
}

.url-display {
    color: #2a5a3c;
    word-break: break-all;
}

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

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .hero-subtitle {
        font-size: 18px;
    }

    .editorial-intro p {
        font-size: 16px;
    }

    .editorial-intro h2,
    .services-reveal h2,
    .trust-building h2 {
        font-size: 26px;
    }

    .service-card {
        padding: 24px;
    }

    .form-section {
        padding: 32px 24px;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}