/* 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;
}

/* Editorial Navigation */
.editorial-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sticky-btn {
    background-color: #dc2626;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
    display: inline-block;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

/* Editorial Content Layout */
.editorial-content {
    max-width: 100%;
}

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

/* Hero Editorial */
.hero-editorial {
    padding: 4rem 0 3rem;
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.hero-text-center {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111827;
    letter-spacing: -0.03em;
}

.hero-lead {
    font-size: 1.3rem;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.6;
}

.hero-image-inline {
    margin-top: 3rem;
    padding: 0 1.5rem;
}

.hero-image-inline img {
    border-radius: 12px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Story Blocks */
.story-block,
.story-turn,
.story-continuation,
.closing-section {
    padding: 4rem 0;
}

.story-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

.story-block p,
.story-turn p,
.story-continuation p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #374151;
}

.story-block h2,
.story-turn h2,
.problem-amplification h2,
.insight-reveal h2,
.testimonials-section h2,
.services-reveal h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #111827;
}

/* Inline CTA Block */
.inline-cta-block {
    padding: 2rem 0;
}

.inline-cta-link {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 600;
    color: #2563eb;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.inline-cta-link:hover {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
    transform: translateX(5px);
}

/* Problem Amplification */
.problem-amplification {
    padding: 4rem 0;
    background-color: #fef3c7;
}

.problem-list {
    margin-top: 3rem;
}

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

.problem-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #92400e;
}

.problem-item p {
    font-size: 1.05rem;
    color: #78350f;
    line-height: 1.7;
}

/* Image Break */
.image-break {
    padding: 0;
    margin: 4rem 0;
}

.image-break img {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Testimonial Inline */
.testimonial-inline {
    background-color: #f3f4f6;
    border-left: 4px solid #2563eb;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: #374151;
}

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

/* Trust Signals */
.trust-signals {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.trust-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
}

.trust-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* How It Works Flow */
.how-it-works-flow {
    margin-top: 3rem;
}

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

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

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

.step-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background-color: #eff6ff;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #2563eb;
    font-size: 0.95rem;
}

/* CTA Transition */
.cta-transition {
    padding: 3rem 0;
}

.transition-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 1rem;
}

/* Services Reveal */
.services-reveal {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.service-card-editorial {
    background-color: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

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

.service-card-editorial.featured {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #2563eb;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #dc2626;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.service-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #4b5563;
    line-height: 1.6;
}

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

/* Urgency Section */
.urgency-section {
    padding: 3rem 0;
    background-color: #fef2f2;
}

.urgency-note {
    font-weight: 600;
    color: #dc2626;
    font-size: 1.1rem;
    margin-top: 1rem;
}

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

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

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

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

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

.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.3s ease;
    background-color: #ffffff;
}

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

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

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

/* Final Reassurance */
.final-reassurance {
    padding: 3rem 0;
}

/* Closing CTA */
.closing-cta {
    padding: 3rem 0;
    text-align: center;
}

.closing-cta-btn {
    display: inline-block;
    background-color: #dc2626;
    color: #ffffff;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.closing-cta-btn:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
}

/* Footer */
.site-footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

.footer-section a {
    color: #9ca3af;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.cookie-banner.active {
    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.6;
    text-align: center;
}

.cookie-content a {
    color: #60a5fa;
}

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

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

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

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

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

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

/* About Page Styles */
.about-page .page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(to bottom, #f0f9ff, #ffffff);
}

.values-section {
    padding: 4rem 0;
}

.value-item {
    margin-bottom: 3rem;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

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

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
}

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

.stat-label {
    display: block;
    font-size: 1rem;
    color: #6b7280;
}

.team-philosophy {
    padding: 4rem 0;
}

.sustainability-section {
    padding: 4rem 0;
    background-color: #ecfdf5;
}

.sustainability-list {
    list-style: none;
    margin-top: 1.5rem;
}

.sustainability-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: #065f46;
    line-height: 1.7;
}

.sustainability-list li:before {
    content: "🌱";
    position: absolute;
    left: 0;
}

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

.cta-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

/* Services Page Styles */
.services-page .page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(to bottom, #fef3c7, #ffffff);
}

.services-overview {
    padding: 3rem 0;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
}

.service-detail-section {
    padding: 2rem 0 4rem;
}

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

.service-detail-card.highlighted {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #2563eb;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #dc2626;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.service-detail-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
}

.service-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111827;
}

.service-detail-content ul {
    list-style: none;
    margin: 1rem 0;
}

.service-detail-content ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #4b5563;
    line-height: 1.6;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.2rem;
}

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

.service-cta:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.service-cta.premium {
    background-color: #dc2626;
}

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

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

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

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

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

.comparison-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.comparison-item p {
    color: #4b5563;
    margin: 0;
}

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

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

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
}

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

.final-cta-section {
    padding: 4rem 0;
    background-color: #eff6ff;
    text-align: center;
}

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

.main-cta-button:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
}

/* Contact Page Styles */
.contact-page .page-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(to bottom, #ecfdf5, #ffffff);
}

.contact-info-section {
    padding: 3rem 0 4rem;
}

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

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

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

.contact-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-link {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2563eb;
    margin: 1rem 0;
}

.contact-note {
    font-size: 0.9rem;
    color: #9ca3af;
    font-style: italic;
    margin-top: 1rem;
}

.hours-list {
    margin: 1rem 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.day {
    font-weight: 600;
    color: #374151;
}

.time {
    color: #6b7280;
}

.address-block {
    font-style: normal;
    line-height: 1.8;
    color: #4b5563;
}

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

.locations-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.location-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
}

.location-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.location-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.location-card address {
    font-style: normal;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.location-email {
    color: #2563eb;
    font-weight: 600;
}

.contact-methods-section {
    padding: 4rem 0;
}

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

.method-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
}

.method-item p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.faq-preview {
    padding: 4rem 0;
    background-color: #eff6ff;
}

.faq-compact {
    margin-top: 2rem;
}

.faq-compact-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2563eb;
}

.faq-compact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
}

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

.contact-cta {
    padding: 4rem 0;
    text-align: center;
}

.cta-alternative {
    margin-top: 1rem;
    color: #6b7280;
}

/* Thanks Page Styles */
.thanks-page .page-hero {
    padding: 4rem 0 2rem;
}

.thanks-hero {
    text-align: center;
    padding: 4rem 0 3rem;
    background: linear-gradient(to bottom, #ecfdf5, #ffffff);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111827;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #6b7280;
}

.thanks-details {
    padding: 4rem 0;
}

.thanks-info-box {
    background-color: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.next-steps {
    margin-top: 2rem;
}

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

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

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

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

.thanks-service-info {
    padding: 3rem 0;
    background-color: #eff6ff;
}

.service-reminder-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #2563eb;
}

.service-name-display {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-note {
    color: #6b7280;
    margin: 0;
}

.thanks-reassurance {
    padding: 4rem 0;
}

.reassurance-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.reassurance-item {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.reassurance-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
}

.reassurance-item p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.thanks-while-waiting {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.waiting-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.waiting-link-card:hover {
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.waiting-link-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.waiting-link-card p {
    color: #6b7280;
    margin: 0;
}

.thanks-urgent {
    padding: 4rem 0;
    text-align: center;
}

.urgent-email {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    margin: 1rem 0;
}

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

.thanks-footer-cta {
    padding: 4rem 0;
    text-align: center;
    background-color: #eff6ff;
}

.thanks-closing {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 2rem;
}

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

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

/* Legal Pages */
.legal-page .page-hero {
    padding: 3rem 0 2rem;
    background-color: #f9fafb;
}

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

.legal-content {
    padding: 3rem 0 4rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #111827;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.legal-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.legal-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.legal-content ul li {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.legal-address {
    font-style: normal;
    line-height: 1.8;
    color: #4b5563;
    background-color: #f3f4f6;
    padding: 1rem;
    border-radius: 6px;
    display: inline-block;
    margin: 1rem 0;
}

.cookie-table {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.cookie-table h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
}

.cookie-table ul {
    list-style: none;
    margin: 0;
}

.cookie-table ul li {
    margin-bottom: 0.5rem;
}

.browser-links {
    margin: 1.5rem 0;
}

.browser-links li {
    margin-bottom: 1rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-editorial h1 {
        font-size: 3rem;
    }

    .nav-links {
        gap: 2.5rem;
    }

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

    .trust-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .stat-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .contact-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .location-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .reassurance-grid {
        flex-direction: row;
    }

    .reassurance-item {
        flex: 1;
    }

    .waiting-links {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .waiting-link-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

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

    .comparison-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

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

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }

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

    .footer-section {
        flex: 1;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-editorial h1 {
        font-size: 3.5rem;
    }

    .trust-grid {
        flex-wrap: nowrap;
    }

    .stats-grid {
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1;
    }

    .contact-grid {
        flex-wrap: nowrap;
    }

    .locations-grid {
        flex-wrap: nowrap;
    }

    .location-card {
        flex: 1;
    }

    .waiting-links {
        flex-wrap: nowrap;
    }

    .waiting-link-card {
        flex: 1;
    }

    .comparison-grid {
        flex-wrap: nowrap;
    }

    .comparison-item {
        flex: 1;
    }
}

/* Print Styles */
@media print {
    .editorial-nav,
    .sticky-cta,
    .cookie-banner,
    .site-footer {
        display: none;
    }
}
