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

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.ad-disclosure {
    font-size: 13px;
    color: #666;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-style: italic;
}

.editorial-content {
    background-color: #ffffff;
    padding: 60px 0;
}

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

.headline-large {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.intro-text {
    font-size: 22px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
    font-style: italic;
}

.hero-image-wrapper {
    margin: 50px 0;
    background-color: #f5f5f5;
}

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

.story-section {
    margin-top: 40px;
}

.body-text {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.8;
}

.section-heading {
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.inline-image-wrapper {
    margin: 50px 0;
    background-color: #f5f5f5;
}

.citation {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    vertical-align: super;
}

.citation:hover {
    text-decoration: underline;
}

.insight-box {
    background-color: #f9f4ef;
    padding: 40px;
    margin: 50px 0;
    border-left: 4px solid #d4a574;
}

.insight-heading {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.insight-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.editorial-list {
    margin: 30px 0 30px 40px;
    font-size: 18px;
    line-height: 1.8;
}

.editorial-list li {
    margin-bottom: 12px;
}

.quote-block {
    margin: 50px 0;
    padding: 40px;
    background-color: #fafafa;
    border-left: 4px solid #2c2c2c;
}

.quote-text {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.quote-author {
    font-size: 16px;
    color: #666;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 16px 36px;
    font-size: 18px;
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #444;
    cursor: pointer;
}

.service-cards-editorial {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    border: 2px solid #e0e0e0;
    padding: 40px;
    background-color: #ffffff;
    position: relative;
}

.service-card.featured {
    border-color: #2c2c2c;
    background-color: #fafafa;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 6px 16px;
    font-size: 13px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
}

.service-title {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-description {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #444;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: bold;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-select {
    width: 100%;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 16px;
    font-size: 18px;
    border: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #444;
    cursor: pointer;
}

.form-section {
    margin: 60px 0;
    padding: 50px;
    background-color: #f9f4ef;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #d0d0d0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
}

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

.testimonial-section {
    margin: 80px 0;
}

.testimonial-item {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #fafafa;
}

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

.testimonial-author {
    font-size: 15px;
    color: #666;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.final-cta {
    margin: 80px 0;
    text-align: center;
    padding: 60px 0;
    background-color: #fafafa;
}

.final-cta .section-heading {
    margin-top: 0;
}

.final-cta .body-text {
    margin-bottom: 30px;
}

.disclaimer-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #fff9f0;
    border: 1px solid #e0d5c7;
}

.disclaimer-heading {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.references-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #f5f5f5;
}

.references-heading {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.references-list {
    margin-left: 20px;
    font-size: 14px;
    line-height: 1.7;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.references-list li {
    margin-bottom: 10px;
}

.references-list a {
    color: #0066cc;
    text-decoration: none;
}

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

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 50px 0;
    margin-top: 80px;
}

.footer-content {
    text-align: center;
}

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

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

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copy {
    font-size: 13px;
    color: #aaa;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.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: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    font-size: 14px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

.btn-cookie.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

@media (max-width: 768px) {
    .headline-large {
        font-size: 32px;
    }

    .intro-text {
        font-size: 19px;
    }

    .section-heading {
        font-size: 26px;
    }

    .body-text {
        font-size: 17px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .form-section {
        padding: 30px 20px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

.contact-page {
    background-color: #ffffff;
    padding: 60px 0;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    margin-bottom: 50px;
}

.contact-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-intro {
    font-size: 19px;
    line-height: 1.6;
    color: #444;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    padding: 30px;
    background-color: #fafafa;
    border-left: 4px solid #2c2c2c;
}

.contact-item-title {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.contact-item-content {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.legal-page {
    background-color: #ffffff;
    padding: 60px 0;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-title {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.legal-heading {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-subheading {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c2c2c;
}

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

.legal-list {
    margin: 16px 0 16px 40px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-list li {
    margin-bottom: 8px;
}

.services-page {
    background-color: #ffffff;
    padding: 60px 0;
}

.services-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.services-intro {
    font-size: 19px;
    line-height: 1.6;
    color: #444;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.about-page {
    background-color: #ffffff;
    padding: 60px 0;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header {
    margin-bottom: 50px;
    text-align: center;
}

.about-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.about-intro {
    font-size: 21px;
    line-height: 1.6;
    color: #444;
    font-style: italic;
}

.about-content {
    margin-top: 40px;
}

.about-section {
    margin-bottom: 50px;
}

.about-heading {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.about-image-wrapper {
    margin: 40px 0;
    background-color: #f5f5f5;
}

.thanks-page {
    background-color: #ffffff;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-container {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 30px;
}

.thanks-title {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.thanks-detail {
    font-size: 17px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.thanks-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.thanks-link {
    display: inline-block;
    padding: 14px 28px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-link:hover {
    background-color: #444;
}

.thanks-link.secondary {
    background-color: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
}

.thanks-link.secondary:hover {
    background-color: #fafafa;
}