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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 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: #1d4ed8;
}

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

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

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

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

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

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

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

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

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

.btn-reject:hover {
    background: #ffffff;
    color: #1e293b;
}

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    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;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
}

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

.nav-links a {
    color: #475569;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

/* Hero Split Section (50/50 Layout) */
.hero-split {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #0f172a;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Split Container (Main Layout Pattern) */
.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.split-container.reverse {
    flex-direction: column-reverse;
}

.split-text,
.split-image {
    flex: 1;
    width: 100%;
}

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
    font-weight: 700;
}

.split-text p {
    margin-bottom: 1rem;
    color: #475569;
    font-size: 1.05rem;
}

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

/* Sections */
.intro-section,
.problem-section,
.services-preview,
.trust-section,
.how-it-works,
.why-us-section,
.urgency-section,
.order-form-section {
    padding: 4rem 1.5rem;
}

.dark-bg {
    background: #1e293b;
    color: #ffffff;
}

.dark-bg h2,
.dark-bg h3 {
    color: #ffffff;
}

.dark-bg p,
.dark-bg li {
    color: #cbd5e1;
}

/* Labels and Badges */
.label {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #f59e0b;
    color: #ffffff;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Services Grid */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.service-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-card.featured {
    border: 2px solid #2563eb;
    background: #f0f9ff;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.service-card p {
    color: #475569;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.25rem;
}

/* Buttons */
.cta-primary,
.cta-secondary,
.cta-urgent {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.cta-primary {
    background: #2563eb;
    color: #ffffff;
}

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

.cta-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

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

.cta-urgent {
    background: #dc2626;
    color: #ffffff;
    font-size: 1.1rem;
    padding: 1.1rem 2.5rem;
}

.cta-urgent:hover {
    background: #b91c1c;
    transform: scale(1.05);
}

.cta-center {
    text-align: center;
    margin-top: 2.5rem;
}

.select-service {
    background: #2563eb;
    color: #ffffff;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.select-service:hover {
    background: #1d4ed8;
}

.link-arrow {
    color: #2563eb;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 0.75rem;
}

/* Blockquotes */
blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
}

blockquote p {
    font-size: 1.05rem;
    color: #334155;
}

blockquote cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    color: #64748b;
    font-weight: 600;
}

/* Steps / How It Works */
.how-it-works {
    background: #f8fafc;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #0f172a;
}

.steps-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    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 h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.step p {
    color: #475569;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #cbd5e1;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #ffffff;
    text-align: center;
}

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

.urgency-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #fecaca;
}

/* Form */
.order-form-section {
    background: #f1f5f9;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    text-align: center;
    color: #0f172a;
}

.form-intro {
    text-align: center;
    color: #64748b;
    margin-bottom: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    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 {
    background: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Footer */
.main-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 3rem 1.5rem 1.5rem;
}

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

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

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

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

.footer-section a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

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

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

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

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37,99,235,0.5);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    padding: 3rem 1.5rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-size: 1.15rem;
    color: #cbd5e1;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 1.5rem;
    background: #f8fafc;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.service-detail-card.highlight {
    border: 2px solid #2563eb;
}

.service-split {
    display: flex;
    flex-direction: column;
}

.service-split.reverse {
    flex-direction: column-reverse;
}

.service-info {
    padding: 2.5rem;
    flex: 1;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin: 1rem 0 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.65rem 0;
    padding-left: 2rem;
    position: relative;
    color: #334155;
}

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

/* Comparison Section */
.comparison-section {
    padding: 4rem 1.5rem;
    background: #f1f5f9;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #0f172a;
}

.comparison-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.compare-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.compare-card.featured-compare {
    border-color: #2563eb;
    background: #f0f9ff;
}

.compare-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.compare-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.compare-desc {
    color: #475569;
    margin-bottom: 1rem;
}

.compare-best {
    color: #10b981;
    font-weight: 600;
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 1.5rem;
}

.guarantee-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.guarantee-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #0f172a;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #f8fafc;
    padding: 1.75rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

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

/* CTA Final Section */
.cta-final-section {
    padding: 4rem 1.5rem;
    background: #2563eb;
    text-align: center;
    color: #ffffff;
}

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

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

.cta-final-section .cta-primary {
    background: #ffffff;
    color: #2563eb;
}

.cta-final-section .cta-primary:hover {
    background: #f1f5f9;
}

/* Team Section */
.team-section {
    padding: 4rem 1.5rem;
    background: #f8fafc;
}

.team-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #0f172a;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    text-align: center;
    padding: 2rem;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

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

.team-member p {
    color: #475569;
}

/* Stats Section */
.stats-section {
    padding: 4rem 1.5rem;
    background: #1e293b;
    color: #ffffff;
}

.stats-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #cbd5e1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 1.5rem;
    background: #f8fafc;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #0f172a;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border-left: 4px solid #2563eb;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: #0f172a;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Mission Section */
.mission-section {
    padding: 4rem 1.5rem;
}

/* Approach Section */
.approach-section {
    padding: 4rem 1.5rem;
    background: #f8fafc;
}

.approach-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #0f172a;
}

.approach-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.approach-item {
    display: flex;
    gap: 1.5rem;
}

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

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.approach-item p {
    color: #475569;
    line-height: 1.7;
}

/* Partner Section */
.partner-section {
    padding: 4rem 1.5rem;
    background: #ffffff;
    text-align: center;
}

.partner-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.partner-section p {
    max-width: 800px;
    margin: 0 auto;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Contact Main */
.contact-main {
    padding: 4rem 1.5rem;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-section,
.contact-map-section {
    flex: 1;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.contact-block p {
    color: #475569;
    line-height: 1.7;
}

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

.note {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.map-placeholder img {
    width: 100%;
    height: auto;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: #ffffff;
    padding: 1.5rem;
}

.map-overlay p {
    color: #ffffff;
    margin: 0;
}

.directions h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.directions ul {
    list-style: none;
}

.directions ul li {
    padding: 0.65rem 0;
    color: #475569;
}

/* Visit Info Section */
.visit-info-section {
    padding: 4rem 1.5rem;
    background: #f8fafc;
}

.visit-info-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

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

.visit-content p {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Response Time Section */
.response-time-section {
    padding: 4rem 1.5rem;
}

.response-time-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.response-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.response-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.response-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.response-time {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.response-card p {
    font-size: 0.95rem;
}

/* FAQ Contact Section */
.faq-contact-section {
    padding: 4rem 1.5rem;
    background: #f8fafc;
}

.faq-contact-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #0f172a;
}

/* Other Contact Section */
.other-contact-section {
    padding: 4rem 1.5rem;
}

.other-contact-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #0f172a;
}

.other-methods {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.method-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.method-card p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 4rem 1.5rem;
    text-align: center;
}

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

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

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-main {
    font-size: 1.2rem;
    color: #d1fae5;
}

/* Thanks Info */
.thanks-info {
    padding: 4rem 1.5rem;
    background: #f8fafc;
}

.thanks-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.thanks-card,
.thanks-side {
    flex: 1;
}

.thanks-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.thanks-card h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #0f172a;
}

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

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

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

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.timeline-content p {
    color: #475569;
    line-height: 1.6;
}

.info-card {
    background: #ffffff;
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.info-card p {
    color: #475569;
    line-height: 1.6;
}

.service-selected {
    font-weight: 700;
    color: #2563eb;
    font-size: 1.1rem;
}

.service-note {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* Thanks Resources */
.thanks-resources {
    padding: 4rem 1.5rem;
}

.thanks-resources h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.resources-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.resource-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
}

.resource-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.resource-card p {
    margin-bottom: 1rem;
}

/* Thanks Final */
.thanks-final {
    padding: 4rem 1.5rem;
    background: #f8fafc;
    text-align: center;
}

.thanks-final h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.thanks-final p {
    color: #475569;
    margin-bottom: 2rem;
}

/* Legal Content */
.legal-content {
    padding: 4rem 1.5rem;
    background: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.legal-container h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.legal-container p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    margin: 1rem 0 1.5rem 2rem;
    color: #475569;
}

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

.legal-container a {
    color: #2563eb;
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookie-table th {
    background: #f1f5f9;
    font-weight: 600;
    color: #0f172a;
}

.cookie-table td {
    color: #475569;
}

/* Story Section */
.story-section {
    padding: 4rem 1.5rem;
}

/* Values Section */
.values-section {
    padding: 4rem 1.5rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.values-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    line-height: 1.7;
}

/* Responsive Design - Tablet and Desktop */
@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .split-container {
        flex-direction: row;
    }

    .split-container.reverse {
        flex-direction: row-reverse;
    }

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

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

    .steps-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

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

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

    .contact-split {
        flex-direction: row;
    }

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

    .response-card {
        flex: 1;
    }

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

    .compare-card {
        flex: 1;
    }

    .other-methods {
        flex-direction: row;
    }

    .method-card {
        flex: 1;
    }

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

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

    .resource-card {
        flex: 1;
    }

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

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

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

    .footer-section {
        flex: 1;
    }

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

    .service-split {
        flex-direction: row;
    }

    .service-split.reverse {
        flex-direction: row-reverse;
    }

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

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

@media (min-width: 1024px) {
    .services-grid {
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.35rem);
    }

    .steps-container {
        flex-direction: row;
    }

    .step {
        flex: 1 1 calc(25% - 1.5rem);
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 1rem;
    }

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

    .team-member {
        flex: 1 1 calc(25% - 1.5rem);
    }

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

    .stat-card {
        flex: 1;
    }

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

    .testimonial-card {
        flex: 1;
    }

    .sticky-cta {
        display: block;
    }
}
