/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fefefe;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2c5f2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3a1b;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

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

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

.cookie-content p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-content a {
    color: #a8d5a9;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    border-color: #999;
    background-color: #333;
}

/* Navigation */
.nav-minimal {
    padding: 1.5rem 0;
    background-color: transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
}

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #4a4a4a;
    font-weight: 500;
}

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

/* Editorial Container (Main Layout) */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem 0;
}

/* Hero Section */
.editorial-hero {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.hero-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-label {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2c5f2d;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.editorial-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    font-style: italic;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-image img {
    width: 100%;
    border-radius: 6px;
}

/* Editorial Body */
.editorial-body {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-column {
    width: 100%;
}

.text-column p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.drop-cap::first-letter {
    font-size: 4rem;
    line-height: 0.85;
    float: left;
    margin: 0.1em 0.1em 0 0;
    font-weight: 700;
    color: #2c5f2d;
}

.text-column h2 {
    font-size: 1.875rem;
    line-height: 1.3;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.text-column h3 {
    font-size: 1.375rem;
    line-height: 1.4;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2a2a2a;
}

/* Blockquote */
.editorial-quote {
    margin: 3rem 0;
    padding: 2rem 2.5rem;
    border-left: 4px solid #2c5f2d;
    background-color: #f8f9f8;
    font-style: italic;
}

.editorial-quote p {
    font-size: 1.375rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.editorial-quote cite {
    font-size: 1rem;
    color: #666;
    font-style: normal;
}

/* Inline CTA */
.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.btn-text-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c5f2d;
    text-decoration: none;
    display: inline-block;
    padding: 0.5rem 0;
    border-bottom: 2px solid #2c5f2d;
    transition: all 0.3s ease;
}

.btn-text-link:hover {
    color: #1a3a1b;
    border-bottom-color: #1a3a1b;
    transform: translateY(-2px);
}

/* Inline Image */
.inline-image {
    margin: 3rem 0;
}

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

.inline-image figcaption {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.75rem;
    text-align: center;
    font-style: italic;
}

/* Lists */
.editorial-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

.editorial-list li {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Benefit Cards */
.benefit-card {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9f8;
    border-radius: 6px;
    border-left: 4px solid #2c5f2d;
}

.benefit-card h3 {
    margin-top: 0;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 1.0625rem;
    margin-bottom: 0;
}

/* Testimonial Inline */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fafbfa;
    border-radius: 6px;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.125rem;
    color: #2a2a2a;
    margin-bottom: 0.75rem;
}

.testimonial-author {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

/* Process Steps */
.process-steps {
    margin: 3rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.step-number {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
    flex-shrink: 0;
}

.step h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.step p {
    font-size: 1.0625rem;
    margin-bottom: 0;
}

/* Services Preview */
.services-preview {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    background-color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2c5f2d;
    box-shadow: 0 4px 20px rgba(44, 95, 45, 0.1);
}

.service-card.featured {
    border-color: #2c5f2d;
    background-color: #f8faf8;
}

.badge {
    position: absolute;
    top: -0.75rem;
    left: 1.5rem;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
}

.service-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #2c5f2d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1a3a1b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

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

.btn-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.btn-submit {
    background-color: #2c5f2d;
    color: #ffffff;
    width: 100%;
}

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

/* Inline CTA Block */
.inline-cta-block {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #f8faf8;
    border-radius: 8px;
    text-align: center;
}

.inline-cta-block h3 {
    margin-top: 0;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.inline-cta-block p {
    font-size: 1.125rem;
    margin-bottom: 0;
}

/* Form Section */
.form-section {
    margin: 5rem 0;
    padding: 3rem 2.5rem;
    background-color: #fafbfa;
    border-radius: 8px;
}

.form-section h2 {
    margin-top: 0;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    font-size: 1.0625rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.editorial-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: normal;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Final Thought */
.final-thought {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 8px;
}

.final-thought p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-style: italic;
}

/* Page Header */
.page-header {
    margin-bottom: 3rem;
}

.header-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-header h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.header-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-style: italic;
}

/* Value Blocks */
.value-block {
    margin: 2rem 0;
    padding: 1.75rem 2rem;
    background-color: #f8f9f8;
    border-left: 4px solid #2c5f2d;
    border-radius: 4px;
}

.value-block h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.value-block p {
    margin-bottom: 0;
    font-size: 1.0625rem;
}

/* CTA Block */
.cta-block {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.cta-block h3 {
    margin-top: 0;
    color: #ffffff;
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.cta-block p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-block .btn-primary {
    background-color: #ffffff;
    color: #2c5f2d;
}

.cta-block .btn-primary:hover {
    background-color: #f0f0f0;
    color: #1a3a1b;
}

.cta-block .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.cta-block .btn-secondary:hover {
    background-color: #ffffff;
    color: #2c5f2d;
}

/* Services Page Specific */
.service-detailed {
    margin: 3rem 0;
    padding: 3rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    background-color: #ffffff;
    position: relative;
}

.featured-service {
    border-color: #2c5f2d;
    background-color: #f8faf8;
}

.badge-featured {
    position: absolute;
    top: -0.75rem;
    left: 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h2 {
    margin: 0;
    font-size: 2rem;
}

.price-tag {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #2c5f2d;
}

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

.service-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-list li {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
    line-height: 1.6;
}

.service-result {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8faf8;
    border-left: 4px solid #2c5f2d;
    border-radius: 4px;
}

.service-result strong {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2c5f2d;
}

.comparison-note {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #fafbfa;
    border-radius: 8px;
    text-align: center;
}

.comparison-note h3 {
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.comparison-note p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-info-section {
    margin: 3rem 0;
}

.contact-block {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9f8;
    border-radius: 6px;
}

.contact-block h3 {
    margin-top: 0;
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.contact-block p {
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.contact-approach {
    margin: 3rem 0;
}

.faq-section {
    margin: 4rem 0;
}

.faq-item {
    margin: 2rem 0;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2c5f2d;
}

.faq-item p {
    font-size: 1.0625rem;
}

.contact-cta {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.contact-cta h2 {
    margin-top: 0;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-cta .btn-primary {
    background-color: #ffffff;
    color: #2c5f2d;
}

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

.alternative-contact {
    margin: 2rem 0;
    text-align: center;
}

.alternative-contact p {
    font-size: 0.95rem;
    color: #666;
}

/* Thanks Page */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.thanks-content {
    max-width: 680px;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

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

.thanks-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-message {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8faf8;
    border-radius: 8px;
}

.thanks-message p {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.service-selected {
    color: #2c5f2d;
    font-weight: 600;
}

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

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

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-num {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f2d;
    flex-shrink: 0;
}

.step-item p {
    font-size: 1.0625rem;
    margin: 0;
}

.thanks-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #fafbfa;
    border-radius: 6px;
}

.thanks-info p {
    margin: 0;
    font-size: 1rem;
}

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

.thanks-reading {
    margin: 3rem 0;
}

.thanks-reading h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.reading-list {
    list-style: none;
    padding: 0;
    max-width: 500px;
    margin: 0 auto;
}

.reading-list li {
    margin-bottom: 0.75rem;
}

.reading-list a {
    font-size: 1.0625rem;
    display: block;
    padding: 0.75rem;
    background-color: #f8f9f8;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.reading-list a:hover {
    background-color: #e8ebe8;
}

/* Legal Pages */
.legal-page .page-header {
    margin-bottom: 2rem;
}

.legal-update {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.legal-intro {
    font-size: 1.125rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #f8f9f8;
    border-left: 4px solid #2c5f2d;
    border-radius: 4px;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

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

.legal-content ul,
.legal-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e5e5;
    text-align: center;
}

.legal-footer p {
    font-size: 0.95rem;
    color: #666;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 1.5rem 2rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-column a {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-column a:hover {
    color: #a8d5a9;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

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

    .page-header h1 {
        font-size: 3.25rem;
    }

    .service-detailed {
        padding: 3.5rem;
    }

    .nav-links {
        gap: 2.5rem;
    }
}

@media (max-width: 767px) {
    .editorial-hero h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

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

    .text-column p {
        font-size: 1.0625rem;
    }

    .text-column h2 {
        font-size: 1.5rem;
    }

    .service-detailed {
        padding: 2rem 1.5rem;
    }

    .service-header {
        flex-direction: column;
    }

    .nav-links {
        gap: 1.25rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}
