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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.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;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie-reject:hover {
    background: #374151;
}

/* Navigation */
.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.brand a {
    color: #1f2937;
}

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

.nav-links a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: slideInUp 0.5s ease;
}

.sticky-btn {
    background: #dc2626;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.sticky-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.95), rgba(17, 24, 39, 0.9)),
                url('https://images.unsplash.com/photo-1559526324-4b87b5e36e44?w=1600&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 4rem;
    margin-top: 60px;
}

.hero-overlay {
    max-width: 900px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #e5e7eb;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* CTAs */
.cta-primary,
.cta-secondary,
.cta-urgent,
.cta-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background: #dc2626;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.cta-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.cta-secondary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-secondary:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.cta-urgent {
    background: #f59e0b;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-urgent:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.inline-cta {
    color: #dc2626;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.inline-cta:hover {
    color: #b91c1c;
}

/* Container Variations */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

/* Narrow Content Section */
.narrow-content {
    padding: 4rem 1.5rem;
    background: #f9fafb;
}

.text-flow {
    max-width: 700px;
    margin: 0 auto;
}

.text-flow p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #374151;
}

.opener {
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    color: #1f2937;
}

/* Stat Reveal Section */
.stat-reveal {
    padding: 5rem 1.5rem;
    background: #1f2937;
}

.stat-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.stat-card h3 {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-card p {
    color: #e5e7eb;
    font-size: 1.1rem;
}

/* Problem Amplification */
.problem-amplification {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

.problem-amplification h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

.problem-amplification > .container-narrow > p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #4b5563;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-item {
    padding: 2rem;
    background: #fef2f2;
    border-left: 4px solid #dc2626;
    border-radius: 8px;
}

.problem-item h4 {
    font-size: 1.5rem;
    color: #991b1b;
    margin-bottom: 0.75rem;
}

.problem-item p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Trust Building Section */
.trust-building {
    padding: 5rem 1.5rem;
    background: #f3f4f6;
}

.trust-split {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.trust-image {
    flex: 1;
    min-width: 300px;
}

.trust-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.trust-text {
    flex: 1;
    min-width: 300px;
}

.trust-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.trust-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #4b5563;
}

/* Testimonial */
.testimonial-flow {
    padding: 4rem 1.5rem;
    background: #1f2937;
}

.testimonial-flow blockquote {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-flow p {
    font-size: 1.5rem;
    font-style: italic;
    color: #e5e7eb;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-flow cite {
    color: #10b981;
    font-style: normal;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Insight Section */
.insight-section {
    padding: 5rem 1.5rem;
    background: #ffffff;
}

.insight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.insight-section > .container-narrow > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #4b5563;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.insight-box {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #eff6ff;
    border-radius: 12px;
    border-top: 4px solid #2563eb;
}

.insight-box h4 {
    font-size: 1.3rem;
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.insight-box p {
    color: #4b5563;
    line-height: 1.6;
}

/* Services Preview */
.services-preview {
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.services-preview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #6b7280;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 0 1 380px;
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid #2563eb;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #2563eb;
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card > p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4b5563;
    flex-grow: 1;
}

.service-includes {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.service-includes span {
    font-size: 0.95rem;
    color: #6b7280;
    padding-left: 1.5rem;
    position: relative;
}

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

.price-reveal {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.select-service {
    background: #1f2937;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.select-service:hover {
    background: #111827;
    transform: translateY(-2px);
}

.service-card.featured .select-service {
    background: #2563eb;
}

.service-card.featured .select-service:hover {
    background: #1e40af;
}

/* Urgency Section */
.urgency-section {
    padding: 4rem 1.5rem;
    background: #fef2f2;
    border-top: 4px solid #dc2626;
    border-bottom: 4px solid #dc2626;
}

.urgency-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #991b1b;
    text-align: center;
}

.urgency-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #4b5563;
    text-align: center;
}

.urgency-section .cta-urgent {
    display: block;
    max-width: 300px;
    margin: 2rem auto 0;
    text-align: center;
}

/* Form Section */
.form-section {
    padding: 6rem 1.5rem;
    background: #1f2937;
}

.form-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.form-section > .container-narrow > p {
    color: #e5e7eb;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
}

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

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

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

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

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

.btn-submit:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Final Trust Section */
.final-trust {
    padding: 3rem 1.5rem;
    background: #f9fafb;
    text-align: center;
}

.final-trust h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.final-trust p {
    font-size: 1.1rem;
    color: #6b7280;
}

/* Footer */
.site-footer {
    background: #111827;
    color: #e5e7eb;
    padding: 4rem 1.5rem 2rem;
}

.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 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-column a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

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

.footer-column p {
    color: #d1d5db;
    line-height: 1.8;
}

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

.footer-bottom p {
    color: #9ca3af;
}

/* Page Hero (for internal pages) */
.page-hero {
    background: linear-gradient(135deg, #1f2937, #111827);
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    margin-top: 60px;
}

.page-hero h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 800;
}

.lead {
    font-size: 1.3rem;
    color: #e5e7eb;
    font-weight: 300;
}

/* About Page */
.about-story {
    padding: 4rem 1.5rem;
}

.story-block {
    margin-bottom: 4rem;
}

.story-block h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.story-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #4b5563;
}

.about-image {
    margin: 3rem 0;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f0fdf4;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #065f46;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #4b5563;
    line-height: 1.6;
}

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

.team-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
}

.team-member h4 {
    font-size: 1.4rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

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

.team-member p {
    color: #4b5563;
    line-height: 1.6;
}

.cta-block {
    margin-top: 4rem;
    padding: 3rem;
    background: #eff6ff;
    border-radius: 16px;
    text-align: center;
}

.cta-block h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.cta-block p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4b5563;
}

/* Services Page */
.services-detailed {
    padding: 4rem 1.5rem;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-detail-card.featured-service {
    border: 3px solid #2563eb;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #2563eb;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
}

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

.service-header h2 {
    font-size: 2rem;
    color: #1f2937;
    flex: 1;
}

.service-header .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dc2626;
}

.service-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.what-you-get,
.who-needs-this {
    margin-bottom: 2rem;
}

.what-you-get h4,
.who-needs-this h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.what-you-get ul {
    list-style: none;
    padding-left: 0;
}

.what-you-get li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: #4b5563;
    line-height: 1.6;
}

.what-you-get li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

.who-needs-this p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.05rem;
}

.cta-service {
    display: block;
    text-align: center;
    margin-top: 2rem;
}

.pricing-transparency {
    padding: 4rem 1.5rem;
    background: #f9fafb;
}

.pricing-transparency h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: center;
}

.pricing-transparency p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

.ready-section {
    padding: 4rem 1.5rem;
    background: #1f2937;
    text-align: center;
}

.ready-section h2 {
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.ready-section p {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-content {
    padding: 4rem 1.5rem;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

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

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

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

.detail-block h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.detail-block p {
    color: #4b5563;
    line-height: 1.8;
}

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

.what-happens {
    margin-top: 3rem;
    padding: 2rem;
    background: #f0fdf4;
    border-radius: 12px;
}

.what-happens h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #065f46;
}

.what-happens ol {
    list-style-position: inside;
    color: #4b5563;
}

.what-happens li {
    padding: 0.5rem 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
}

.contact-form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-form-wrapper p {
    color: #6b7280;
    margin-bottom: 2rem;
}

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

.location-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: center;
}

.location-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
    text-align: center;
}

.faq-contact {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.faq-contact h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
}

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

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

.faq-item h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

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

/* Thanks Page */
.thanks-section {
    padding: 8rem 1.5rem 6rem;
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
    margin-top: 60px;
    min-height: 70vh;
}

.thanks-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #065f46;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #4b5563;
    margin-bottom: 3rem;
}

.thanks-service {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #1e40af;
    font-weight: 600;
}

.what-next {
    margin-bottom: 3rem;
    text-align: left;
}

.what-next h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

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

.step-content h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

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

.thanks-resources {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-resources h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.thanks-resources p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.thanks-resources ul {
    list-style: none;
    padding-left: 0;
}

.thanks-resources li {
    padding: 0.5rem 0;
}

.thanks-cta {
    margin: 3rem 0;
    padding: 2rem;
    background: #fef2f2;
    border-radius: 12px;
}

.thanks-cta p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

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

/* Legal Pages */
.legal-page {
    padding: 6rem 1.5rem 4rem;
    margin-top: 60px;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1f2937;
    margin: 2.5rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #374151;
    margin: 2rem 0 1rem;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: #4b5563;
    margin: 1.5rem 0 0.75rem;
}

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

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

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

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table thead {
    background: #f3f4f6;
}

.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: #1f2937;
    border-bottom: 2px solid #d1d5db;
}

.cookies-table td {
    padding: 1rem;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .stat-card h3 {
        font-size: 2.2rem;
    }

    .trust-split {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .main-form {
        padding: 2rem 1.5rem;
    }

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

    .lead {
        font-size: 1.1rem;
    }

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

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

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

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

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

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .brand {
        font-size: 1.2rem;
    }

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

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .stat-card {
        min-width: 100%;
    }

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

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

    .cookies-table th,
    .cookies-table td {
        padding: 0.75rem 0.5rem;
    }
}