/* 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: #2d3748;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

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

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

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

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

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

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

.btn-cookie {
    background-color: #10b981;
    color: #ffffff;
}

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

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

.btn-cookie-reject:hover {
    background-color: #374151;
    border-color: #9ca3af;
}

/* Navigation - Editorial Style */
.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Arial', sans-serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #4b5563;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

/* Editorial Container - Narrow Centered Layout */
.editorial-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Story Header */
.story-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.story-header h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.header-meta {
    color: #6b7280;
    font-size: 0.9rem;
    font-family: 'Arial', sans-serif;
}

.reading-time {
    font-style: italic;
}

/* Page Header (for other pages) */
.page-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.page-header h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    font-style: italic;
}

/* Story Lead */
.story-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #374151;
}

.story-lead p {
    margin-bottom: 1rem;
}

/* Story Section */
.story-section {
    margin-bottom: 2.5rem;
}

.story-section h2 {
    font-size: 1.7rem;
    line-height: 1.4;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.story-section h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 600;
    color: #1f2937;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.story-section p {
    margin-bottom: 1.2rem;
}

.story-section ul,
.story-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.story-section li {
    margin-bottom: 0.5rem;
}

/* Story Images */
.story-image,
.story-image-small {
    margin: 2.5rem 0;
}

.story-image img,
.story-image-small img {
    width: 100%;
    border-radius: 4px;
}

.story-image-small img {
    max-width: 600px;
    margin: 0 auto;
}

figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    text-align: center;
}

/* Highlight Box */
.highlight-box {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.highlight-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #92400e;
}

.highlight-box p {
    margin-bottom: 0.8rem;
    color: #78350f;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.highlight-box strong {
    color: #92400e;
}

/* Inline CTA */
.inline-cta {
    background-color: #eff6ff;
    border: 2px solid #2563eb;
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.cta-content h3 {
    font-size: 1.5rem;
    color: #1e40af;
    margin-bottom: 0.8rem;
}

.cta-content p {
    font-size: 1.05rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonial-inline {
    background-color: #f9fafb;
    border-left: 4px solid #10b981;
    padding: 1.8rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #374151;
}

.testimonial-inline p {
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-weight: 600;
    color: #6b7280;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

/* Services Cards */
.services-cards {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.service-card.featured {
    border-color: #10b981;
    background-color: #f0fdf4;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background-color: #10b981;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

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

.service-header h3 {
    font-size: 1.4rem;
    color: #111827;
    margin: 0;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    font-family: 'Arial', sans-serif;
}

.service-card p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 1.2rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    position: relative;
    color: #374151;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.btn-select-service {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-select-service:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

/* Stats Section */
.stats-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 3rem 0;
    justify-content: space-between;
}

.stat-item {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

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

.cta-final p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #dbeafe;
}

/* Buttons */
.btn-primary,
.btn-primary-large {
    display: inline-block;
    background-color: #10b981;
    color: #ffffff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    border: none;
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary-large:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
    color: #ffffff;
}

.btn-primary-large {
    font-size: 1.1rem;
    padding: 1.1rem 2.5rem;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2563eb;
    padding: 0.9rem 2rem;
    border: 2px solid #2563eb;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

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

.form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.8rem;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

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

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #4b5563;
    flex: 1;
}

.btn-submit {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-submit:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

/* Final Note */
.final-note {
    text-align: center;
    font-size: 1.15rem;
    font-style: italic;
    color: #6b7280;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

/* Footer */
.footer-editorial {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #9ca3af;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.85rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    padding: 1rem;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-content {
    max-width: 1200px;
    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: 1rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.btn-sticky {
    background-color: #10b981;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-sticky:hover {
    background-color: #059669;
    color: #ffffff;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.contact-card {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.contact-card h2 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1.2rem;
}

.contact-details p {
    margin-bottom: 0.8rem;
    color: #374151;
}

.contact-details a {
    color: #2563eb;
    font-weight: 600;
}

.contact-details .mt-2 {
    margin-top: 1.5rem;
}

/* Location Map */
.location-map {
    margin: 3rem 0;
}

.location-map h2 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    color: #111827;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: #ffffff;
}

.map-overlay p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Services Detailed */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2.5rem 0;
}

.service-detailed {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
}

.service-detailed.featured-service {
    border-color: #10b981;
    background-color: #f0fdf4;
}

.service-detailed-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.service-detailed-header h2 {
    font-size: 1.8rem;
    color: #111827;
    margin: 0;
}

.price-tag {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2563eb;
    font-family: 'Arial', sans-serif;
}

.service-intro {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.service-detailed-content h3 {
    font-size: 1.3rem;
    color: #111827;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.detailed-features {
    list-style: none;
    margin: 1.2rem 0;
}

.detailed-features li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #374151;
    line-height: 1.6;
}

.detailed-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #111827;
    font-family: 'Arial', sans-serif;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background-color: #f9fafb;
}

/* FAQ Items */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

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

.faq-item p {
    color: #4b5563;
    line-height: 1.6;
}

/* Timeline */
.timeline-section {
    margin: 3rem 0;
}

.timeline-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #111827;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    font-family: 'Arial', sans-serif;
}

.timeline-content {
    flex: 1;
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #4b5563;
    margin: 0;
}

/* Values Section */
.values-section {
    margin: 3rem 0;
}

.values-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #111827;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #2563eb;
}

.value-item h3 {
    font-size: 1.3rem;
    color: #111827;
    margin-bottom: 0.8rem;
}

.value-item p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-page h1 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.thanks-content {
    text-align: left;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    text-align: center;
}

.service-confirmation {
    background-color: #eff6ff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    border: 2px solid #2563eb;
}

.service-confirmation h2 {
    font-size: 1.3rem;
    color: #1e40af;
    margin-bottom: 0.8rem;
}

.selected-service-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
}

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

.next-steps h2 {
    font-size: 1.8rem;
    color: #111827;
    margin-bottom: 2rem;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.2rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.important-notice {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.8rem;
    border-radius: 8px;
    margin: 2.5rem 0;
}

.important-notice h3 {
    font-size: 1.2rem;
    color: #92400e;
    margin-bottom: 1rem;
}

.important-notice ul {
    margin-left: 1.5rem;
    color: #78350f;
}

.important-notice li {
    margin-bottom: 0.5rem;
}

.contact-emergency {
    background-color: #fee2e2;
    border-left: 4px solid #dc2626;
    padding: 1.8rem;
    border-radius: 8px;
    margin: 2.5rem 0;
}

.contact-emergency h3 {
    font-size: 1.2rem;
    color: #991b1b;
    margin-bottom: 0.8rem;
}

.contact-emergency p {
    color: #7f1d1d;
    margin-bottom: 0.5rem;
}

.email-link {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.1rem;
}

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

.testimonial-thanks {
    background-color: #f9fafb;
    border-left: 4px solid #10b981;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
}

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

.legal-section h2 {
    font-size: 1.7rem;
    color: #111827;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.cookie-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #111827;
}

.inline-link {
    color: #2563eb;
    font-weight: 600;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .story-header h1,
    .page-header h1 {
        font-size: 1.8rem;
    }

    .story-lead {
        font-size: 1.1rem;
    }

    .story-section h2 {
        font-size: 1.5rem;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.2rem;
    }

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

    .stats-section {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .timeline-item {
        flex-direction: column;
    }

    .timeline-year {
        width: auto;
    }

    .values-grid {
        flex-direction: column;
    }

    .thanks-page h1 {
        font-size: 2rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

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

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .editorial-container {
        padding: 1.5rem 1rem;
    }

    .story-header h1,
    .page-header h1 {
        font-size: 1.6rem;
    }

    .cta-final h2 {
        font-size: 1.6rem;
    }
}