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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    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: #1d4ed8;
}

/* Navigation - Minimal Style */
.nav-minimal {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
}

.nav-menu.active {
    display: block;
}

.nav-menu li {
    padding: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #1a1a1a;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #f3f4f6;
    color: #2563eb;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-sticky {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

/* Editorial Container - Main Layout */
.editorial-container {
    max-width: 100%;
}

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

/* Hero Section - Editorial Style */
.hero-editorial {
    padding: 3rem 0;
}

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

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4b5563;
    font-weight: 400;
}

.hero-image-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Content Sections */
.content-section {
    padding: 3rem 0;
}

.content-section.bg-light {
    background-color: #f9fafb;
}

.content-section.bg-dark {
    background-color: #1f2937;
    color: #ffffff;
}

.content-section h2 {
    font-size: 1.875rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: inherit;
}

.content-section h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: inherit;
}

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

.text-white {
    color: #ffffff;
}

/* Typography Elements */
.opening-graf {
    font-size: 1.375rem;
    line-height: 1.7;
    font-weight: 500;
    color: #374151;
    margin-bottom: 2rem;
}

.inline-quote {
    margin: 2.5rem 0;
    padding: 1.5rem 0 1.5rem 1.5rem;
    border-left: 4px solid #2563eb;
    background: #f3f4f6;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #1f2937;
}

.inline-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #6b7280;
    font-size: 0.95rem;
}

blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 0 1.5rem 1.5rem;
    border-left: 4px solid #2563eb;
}

/* Images in Content */
.image-inline {
    margin: 2.5rem 0;
}

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

/* Stats */
.stats-inline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.stat-item strong {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
}

.stat-item span {
    font-size: 1rem;
    color: #6b7280;
}

/* Warning/Info Boxes */
.warning-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.warning-box h3 {
    margin-top: 0;
    color: #92400e;
    font-size: 1.25rem;
}

.warning-box p {
    margin-bottom: 0;
    color: #78350f;
}

.reveal-box {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.reveal-box p {
    margin-bottom: 0;
    color: #1e3a8a;
}

.urgency-box {
    background: #fee2e2;
    border-left: 4px solid #dc2626;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.urgency-box p {
    margin-bottom: 0;
    color: #7f1d1d;
}

.info-note {
    font-size: 0.95rem;
    color: #6b7280;
    font-style: italic;
}

/* Steps List */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

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

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

.step-content h3 {
    margin-top: 0;
    font-size: 1.25rem;
    color: #ffffff;
}

.step-content p {
    color: #d1d5db;
    margin-bottom: 0;
}

/* CTAs */
.cta-inline {
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 1.5rem 0;
    transition: color 0.2s ease;
}

.cta-inline:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.cta-inline-strong {
    display: inline-block;
    background: #eff6ff;
    color: #1e40af;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    margin: 2rem 0;
    transition: background-color 0.2s ease;
}

.cta-inline-strong:hover {
    background: #dbeafe;
}

.cta-button-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.cta-button-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-button-urgent {
    display: inline-block;
    background: #dc2626;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.cta-button-urgent:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.cta-button-final {
    display: inline-block;
    background: #059669;
    color: #ffffff;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.cta-button-final:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.cta-box-inline {
    background: #f3f4f6;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.cta-box-inline h3 {
    margin-top: 0;
}

/* Testimonials */
.testimonials-inline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.testimonial-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.testimonial-card p {
    font-style: italic;
    color: #374151;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: #6b7280;
    font-size: 0.95rem;
}

/* Success Stats */
.success-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.success-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: #eff6ff;
    border-radius: 8px;
}

.success-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    display: block;
    margin-bottom: 0.5rem;
}

.success-label {
    font-size: 1rem;
    color: #1e40af;
    font-weight: 500;
}

/* Services Section */
.services-reveal {
    padding: 4rem 0;
    background: #f9fafb;
}

.section-intro {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

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

.service-card {
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2563eb;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    padding: 2rem;
    background: #f9fafb;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-card.featured .service-header {
    background: #eff6ff;
}

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

.service-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2563eb;
}

.service-body {
    padding: 2rem;
}

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

.service-features li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
    font-size: 1.25rem;
}

.service-ideal {
    font-size: 0.95rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 1.5rem;
}

/* Form Section */
.form-section {
    padding: 4rem 0;
    background: #ffffff;
}

.form-intro {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

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

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

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: normal;
    cursor: pointer;
}

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

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 0;
    background: #ffffff;
}

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

.next-steps-list {
    list-style: none;
    counter-reset: steps;
    margin: 2rem 0;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.next-steps-list li {
    counter-increment: steps;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    font-size: 1.125rem;
}

.next-steps-list li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 35px;
    height: 35px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Footer */
.site-footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1.5rem;
}

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

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #d1d5db;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.btn-accept:hover {
    background: #047857;
}

.btn-reject {
    background: #6b7280;
    color: #ffffff;
}

.btn-reject:hover {
    background: #4b5563;
}

/* Page Header */
.page-header {
    padding: 3rem 0 2rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

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

.last-updated {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Legal Pages */
.legal-page h2 {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.legal-page h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

.legal-page h4 {
    font-size: 1.125rem;
    margin-top: 1rem;
    font-weight: 600;
}

.legal-page ul,
.legal-page ol {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* About Page */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.team-member h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.team-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.value-item h3 {
    margin-top: 0;
    font-size: 1.25rem;
    color: #2563eb;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #d1d5db;
}

/* Services Page */
.services-detail-section {
    padding: 2rem 0;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    margin-bottom: 3rem;
    overflow: hidden;
    position: relative;
}

.service-detail-card.featured {
    border-color: #2563eb;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
}

.badge-featured {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2563eb;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
}

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

.service-detail-card.featured .service-detail-header {
    background: #eff6ff;
}

.service-detail-header h2 {
    margin: 0;
    font-size: 1.75rem;
    flex: 1;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2563eb;
}

.service-detail-body {
    padding: 2rem;
}

.detail-list {
    list-style: none;
    margin: 1rem 0 1.5rem 0;
    padding: 0;
}

.detail-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    line-height: 1.7;
}

.detail-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
    font-size: 1.25rem;
}

.pricing-note {
    background: #eff6ff;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #1e40af;
    margin-top: 0.5rem;
}

.btn-service-select {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

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

.comparison-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.comparison-helper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.helper-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.helper-item h3 {
    margin-top: 0;
    font-size: 1.125rem;
}

.helper-item p {
    margin-bottom: 0;
}

.help-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #eff6ff;
    border-radius: 8px;
}

/* Contact Page */
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-info-card {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.contact-info-card h3 {
    margin-top: 0;
    color: #2563eb;
    font-size: 1.25rem;
}

.contact-note-box {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    margin: 2rem 0;
}

.contact-note-box h3 {
    margin-top: 0;
    color: #1e40af;
}

.location-info {
    margin: 2rem 0;
}

.location-info ul {
    margin: 0.5rem 0 1.5rem 1.5rem;
}

.map-placeholder {
    margin: 2rem 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.faq-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.faq-item h3 {
    margin-top: 0;
    font-size: 1.125rem;
    color: #1f2937;
}

.cta-box-contact {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-box-contact h3 {
    margin-top: 0;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 0;
    text-align: center;
}

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

.thanks-icon svg {
    color: #059669;
}

.thanks-info-box {
    background: #eff6ff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.thanks-info-box h3 {
    margin-top: 0;
    color: #1e40af;
}

.next-steps-simple {
    margin: 1rem 0 1rem 1.5rem;
    text-align: left;
}

.next-steps-simple li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    align-items: center;
}

.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: #6b7280;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

.urgent-note {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    margin: 2rem 0;
    text-align: left;
}

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

.info-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.info-card h3 {
    margin-top: 0;
    color: #2563eb;
}

.info-card ul {
    margin: 1rem 0 0 1.5rem;
}

.testimonial-box {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 8px;
    font-style: italic;
    margin: 2rem 0;
}

.testimonial-box cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #1e40af;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        border-bottom: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu a {
        padding: 0;
    }

    .nav-menu a:hover {
        background: none;
    }

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

    .stats-inline {
        flex-direction: row;
    }

    .stat-item {
        flex: 1;
    }

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

    .form-row .form-group {
        flex: 1;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        max-width: 70%;
    }

    .success-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .success-item {
        flex: 1;
        min-width: 200px;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1;
        min-width: 280px;
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-box {
        flex: 1;
        min-width: 200px;
    }

    .contact-info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-card {
        flex: 1;
        min-width: 250px;
    }

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

    .info-cards {
        flex-direction: row;
    }

    .info-card {
        flex: 1;
    }

    .comparison-helper {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .helper-item {
        flex: 1;
        min-width: 300px;
    }
}

@media (min-width: 1024px) {
    .hero-editorial h1 {
        font-size: 3.25rem;
    }

    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 320px;
        max-width: calc(50% - 1rem);
    }
}
