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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.editorial-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.editorial-hero {
    padding: 4rem 0 3rem;
}

.hero-text-narrow {
    margin-bottom: 2.5rem;
}

.editorial-hero h1 {
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.65;
    color: #4a4a4a;
}

.hero-image-editorial {
    margin-top: 2rem;
    border-radius: 4px;
    overflow: hidden;
}

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

.content-narrow {
    margin-bottom: 3.5rem;
}

.content-narrow h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

.content-narrow p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.story-section {
    margin-top: 4rem;
}

.story-image {
    margin: 2rem 0;
    border-radius: 4px;
    overflow: hidden;
}

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

.highlight-section {
    margin: 3rem 0;
}

.highlight-box {
    background-color: #f5f5f5;
    border-left: 4px solid #2c2c2c;
    padding: 2rem 2.5rem;
    border-radius: 2px;
}

.highlight-box h3 {
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
}

.mistake-list {
    list-style: none;
}

.mistake-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.9rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.mistake-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #d32f2f;
    font-size: 1.3rem;
}

.testimony-inline {
    margin: 3.5rem 0;
}

.testimony-inline blockquote {
    border-left: 3px solid #2c2c2c;
    padding-left: 2rem;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.inline-cta {
    margin: 2rem 0;
}

.cta-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid #1a1a1a;
    transition: opacity 0.2s;
}

.cta-link:hover {
    opacity: 0.7;
}

.centered-cta {
    text-align: center;
}

.btn-primary {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s;
}

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

.btn-primary-alt {
    display: inline-block;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 0.85rem 1.8rem;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s;
}

.btn-primary-alt:hover {
    background-color: #4a4a4a;
}

.image-text-combo {
    margin: 3.5rem 0;
}

.combo-image {
    margin: 2rem 0;
    border-radius: 4px;
    overflow: hidden;
}

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

.services-preview {
    margin: 4rem 0;
    padding: 3rem 0;
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.services-intro-narrow {
    margin-bottom: 3rem;
    text-align: center;
}

.services-intro-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.services-intro-narrow p {
    font-size: 1.05rem;
    color: #5a5a5a;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-editorial {
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.service-card-editorial h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card-editorial p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
}

.service-cta {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.service-cta:hover {
    background-color: #333333;
}

.urgency-section {
    background-color: #fff9e6;
    padding: 2.5rem;
    border-radius: 4px;
    margin: 3rem 0;
    border-left: 4px solid #ffa000;
}

.urgency-section h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.urgency-section p {
    color: #2c2c2c;
}

.form-section-editorial {
    margin: 4rem 0;
    padding: 3rem 0;
}

.form-intro-narrow {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-intro-narrow h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.final-push {
    margin: 4rem 0 3rem;
}

.final-cta-inline {
    margin-top: 2rem;
}

.footer-editorial {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 2rem;
    margin-top: 5rem;
}

.footer-content-narrow {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

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

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

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

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

.footer-copy {
    padding-top: 2rem;
    border-top: 1px solid #333333;
}

.footer-copy p {
    color: #888888;
    font-size: 0.85rem;
}

.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 90;
    display: none;
}

.sticky-cta-bar.visible {
    display: block;
}

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

.sticky-cta-content span {
    color: #ffffff;
    font-size: 0.95rem;
}

.sticky-cta-btn {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.sticky-cta-btn:hover {
    background-color: #f0f0f0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
}

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

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.btn-accept:hover {
    background-color: #45a049;
}

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

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

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.service-detail-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.service-header {
    background-color: #f9f9f9;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.service-header h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin: 0;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-body {
    padding: 2rem;
}

.service-body p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.service-body h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem;
    color: #2c2c2c;
}

.service-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-body ul li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.service-note {
    font-style: italic;
    color: #6a6a6a;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.btn-service {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.85rem 1.8rem;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1rem;
    transition: background-color 0.2s;
}

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

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #4a4a4a;
    line-height: 1.65;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

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

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.contact-card a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
}

.contact-card a:hover {
    opacity: 0.7;
}

.contact-note {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-checklist {
    list-style: none;
    margin: 1.5rem 0;
}

.contact-checklist li {
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.6;
}

.contact-checklist li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #1a1a1a;
    font-size: 1.5rem;
}

.thanks-section {
    padding: 5rem 0;
    text-align: center;
}

.thanks-content {
    max-width: 650px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
}

.thanks-section h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-confirmation {
    background-color: #f5f5f5;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
    font-size: 1rem;
    color: #2c2c2c;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding-left: 3rem;
    margin-bottom: 1.2rem;
    position: relative;
    line-height: 1.6;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.thanks-actions {
    margin: 3rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a1a1a;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 3px;
    border: 1px solid #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.thanks-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.thanks-contact p {
    margin-bottom: 0.5rem;
    color: #5a5a5a;
}

.thanks-contact a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
}

.thanks-contact a:hover {
    opacity: 0.7;
}

.legal-content {
    font-size: 1rem;
    line-height: 1.75;
}

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

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    margin-bottom: 0.6rem;
}

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .editorial-hero h1 {
        font-size: 1.8rem;
    }

    .lead-text {
        font-size: 1.05rem;
    }

    .content-narrow h2 {
        font-size: 1.5rem;
    }

    .highlight-box {
        padding: 1.5rem;
    }

    .editorial-form {
        padding: 1.5rem;
    }

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-icon {
        font-size: 3rem;
    }

    .thanks-section h1 {
        font-size: 1.8rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}