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

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

/* Sidebar Navigation */
.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background-color: #0f172a;
    color: #ffffff;
    padding: 2rem 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.nav-brand {
    padding: 0 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    font-size: 1.75rem;
    font-weight: bold;
    color: #3b82f6;
}

.brand-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.nav-links {
    list-style: none;
    flex: 1;
}

.nav-links li {
    margin-bottom: 0.25rem;
}

.nav-links a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: #94a3b8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    background-color: rgba(59, 130, 246, 0.1);
    border-left-color: #3b82f6;
}

.nav-footer {
    padding: 1.5rem 1.5rem 0;
    border-top: 1px solid #334155;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-footer a {
    color: #64748b;
    font-size: 0.85rem;
}

.nav-footer a:hover {
    color: #94a3b8;
}

/* Main Content Area */
.main-content {
    margin-left: 240px;
    min-height: 100vh;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-cookie-accept {
    background-color: #3b82f6;
    color: #ffffff;
}

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

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

.btn-cookie-reject:hover {
    border-color: #94a3b8;
    background-color: rgba(148, 163, 184, 0.1);
}

/* Hero Section - Card Based */
.hero-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 320px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #eff6ff;
    color: #1e40af;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-card h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    min-width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* CTAs */
.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3b82f6;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cta-primary:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Insight Section */
.insight-section {
    padding: 4rem 3rem;
    background-color: #f8fafc;
}

.insight-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.insight-card p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

/* Services Grid - Card Based */
.services-grid {
    padding: 5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

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

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: #3b82f6;
}

.card-badge {
    display: inline-block;
    padding: 0.4rem 0.875rem;
    background-color: #fef3c7;
    color: #92400e;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    align-self: flex-start;
}

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

.service-card > p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.9rem;
    color: #475569;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.card-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
}

.price-note {
    font-size: 0.85rem;
    color: #64748b;
}

.btn-select-service {
    width: 100%;
    padding: 0.875rem;
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Trust Section */
.trust-section {
    padding: 5rem 3rem;
    background-color: #0f172a;
    color: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.trust-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #1e293b;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #334155;
}

.trust-quote p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-style: italic;
}

.trust-author {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Approach Section */
.approach-section {
    padding: 5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.approach-visual {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.approach-content {
    flex: 1;
    min-width: 320px;
}

.approach-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

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

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

.approach-item strong {
    display: block;
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.approach-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Form Section */
.form-section {
    padding: 5rem 3rem;
    background-color: #f8fafc;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.form-intro p {
    color: #64748b;
    font-size: 1.05rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-submit {
    padding: 1rem;
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background-color: #2563eb;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

/* Final CTA */
.final-cta {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #ffffff;
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: #0f172a;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #1e293b;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Footer */
.site-footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 4rem 3rem 2rem;
}

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

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

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

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

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

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

.footer-col a {
    color: #94a3b8;
    font-size: 0.9rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
}

/* Page Hero */
.page-hero {
    padding: 5rem 3rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #64748b;
}

/* About Page Styles */
.about-story {
    padding: 4rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-content {
    flex: 1;
    min-width: 320px;
}

.story-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

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

.story-visual {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.values-section {
    padding: 5rem 3rem;
    background-color: #f8fafc;
}

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

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

.value-card p {
    color: #64748b;
    line-height: 1.7;
}

.team-approach {
    padding: 5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.approach-content-full h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

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

.track-record {
    padding: 5rem 3rem;
    background-color: #0f172a;
    color: #ffffff;
}

.track-record h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-card {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background-color: #1e293b;
    border-radius: 12px;
    border: 1px solid #334155;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.5;
}

.who-we-help {
    padding: 5rem 3rem;
}

.help-content {
    max-width: 1200px;
    margin: 0 auto;
}

.help-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
    text-align: center;
}

.help-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.help-types {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.help-type {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 12px;
}

.help-type h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.help-type p {
    color: #64748b;
    line-height: 1.7;
}

.final-about-cta {
    padding: 5rem 3rem;
    background-color: #f8fafc;
    text-align: center;
}

.final-about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

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

/* Services Detail Page */
.services-detailed {
    padding: 3rem 3rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-badge-detail {
    display: inline-block;
    padding: 0.4rem 0.875rem;
    background-color: #fef3c7;
    color: #92400e;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 1.5rem;
}

.price-period {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
    margin-left: 0.5rem;
}

.service-intro {
    font-size: 1.15rem;
    color: #334155;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
}

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

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.detail-features {
    list-style: none;
    margin-bottom: 2rem;
}

.detail-features li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

.detail-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.service-detail-visual {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    border-radius: 12px;
    overflow: hidden;
}

.service-comparison {
    padding: 4rem 3rem;
    background-color: #f8fafc;
    text-align: center;
}

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

.service-comparison p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.comparison-cta {
    margin-top: 1.5rem;
}

/* Contact Page */
.contact-info-section {
    padding: 3rem 3rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.contact-detail {
    font-size: 1.05rem;
    color: #334155;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-detail a {
    color: #3b82f6;
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

.contact-approach {
    padding: 5rem 3rem;
    background-color: #f8fafc;
}

.approach-content-centered {
    max-width: 900px;
    margin: 0 auto;
}

.approach-content-centered h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.approach-content-centered > p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
}

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

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

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

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

.step-content p {
    color: #64748b;
    line-height: 1.7;
}

.contact-faq {
    padding: 5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

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

.faq-item p {
    color: #64748b;
    line-height: 1.7;
}

.contact-final-cta {
    padding: 5rem 3rem;
    background-color: #f8fafc;
    text-align: center;
}

.contact-final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

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

/* Thanks Page */
.thanks-section {
    padding: 5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.service-confirmation {
    margin-bottom: 3rem;
}

.selected-service-info {
    padding: 1.25rem;
    background-color: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 6px;
    font-size: 1.05rem;
    color: #334155;
}

.thanks-details {
    margin: 3rem 0;
    text-align: left;
}

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

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

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

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

.step-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.step-info p {
    color: #64748b;
    line-height: 1.7;
}

.thanks-additional {
    margin: 3rem 0;
}

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

.thanks-additional > p {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.thanks-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.thanks-link {
    padding: 0.875rem 1.5rem;
    background-color: #f8fafc;
    color: #334155;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.thanks-link:hover {
    background-color: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

.thanks-urgent {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #fef3c7;
    border-radius: 8px;
    text-align: center;
}

.thanks-urgent p {
    margin: 0.5rem 0;
    color: #334155;
}

.thanks-urgent a {
    color: #3b82f6;
    font-weight: 600;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 3rem 5rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.legal-intro {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    font-style: italic;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #334155;
}

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

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.75rem;
    color: #475569;
    line-height: 1.7;
}

.legal-content strong {
    color: #0f172a;
}

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

.cookie-table thead {
    background-color: #f8fafc;
}

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

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

.cookie-table td {
    color: #475569;
    font-size: 0.95rem;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .sidebar-nav {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
    }

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

@media (max-width: 768px) {
    .sidebar-nav {
        width: 100%;
        height: auto;
        position: relative;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-card h1 {
        font-size: 2.25rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

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

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

    .value-card,
    .help-type,
    .contact-card,
    .faq-item {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        position: static;
        text-align: center;
        margin: 2rem 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-content p {
        min-width: auto;
    }

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

    .approach-section,
    .about-story,
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-card,
    .services-grid,
    .trust-section,
    .form-section,
    .approach-section,
    .page-hero,
    .legal-content {
        padding: 3rem 1.5rem;
    }

    .hero-card h1 {
        font-size: 1.875rem;
    }

    .section-header h2,
    .page-hero h1 {
        font-size: 1.75rem;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

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

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