/* 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, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

/* Ad Notice */
.ad-notice {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.875rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #fbbf24;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-links {
    display: flex;
    gap: 24px;
}

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

.nav-links a:hover {
    color: #2563eb;
}

/* Hero Visual Section */
.hero-visual {
    margin-top: 120px;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    background-color: #1f2937;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Story Intro Section */
.story-intro {
    padding: 80px 20px;
    background-color: #f9fafb;
}

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

.lead-text {
    font-size: 1.375rem;
    line-height: 1.8;
    color: #1f2937;
    font-weight: 400;
    margin-bottom: 24px;
}

.narrow-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Problem Reveal Section */
.problem-reveal {
    padding: 100px 20px;
    background-color: #fff;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
    margin: 32px 0;
}

.problem-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
    font-size: 1.125rem;
    color: #dc2626;
}

.problem-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #dc2626;
}

.split-image {
    flex: 1;
    background-color: #e5e7eb;
}

.split-image img {
    width: 100%;
    height: auto;
}

/* Insight Block Section */
.insight-block {
    padding: 100px 20px;
    background-color: #fef3c7;
}

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

.centered-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.centered-content p {
    font-size: 1.25rem;
    color: #4b5563;
}

.card-trio {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.insight-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.insight-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
}

/* Solution Entry Section */
.solution-entry {
    padding: 80px 20px;
    background-color: #fff;
}

.solution-entry h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

/* Method Reveal Section */
.method-reveal {
    padding: 100px 20px;
    background-color: #f3f4f6;
}

.wide-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.method-image {
    flex: 0 0 550px;
    background-color: #d1d5db;
}

.method-text {
    flex: 1;
    padding: 40px 0;
}

.method-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
}

.method-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 32px;
}

.method-step {
    margin-bottom: 32px;
}

.method-step strong {
    display: block;
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 8px;
}

.method-step p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Social Proof Section */
.social-proof {
    padding: 100px 20px;
    background-color: #1f2937;
    color: #fff;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.testimonial {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.quote {
    font-size: 1.375rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 16px;
    color: #f3f4f6;
}

.author {
    font-size: 1rem;
    color: #9ca3af;
    font-weight: 500;
}

/* Services Preview Section */
.services-preview {
    padding: 100px 20px;
    background-color: #fff;
}

.service-cards-stacked {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    padding: 48px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.service-card h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.service-card > p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 12px;
}

.service-time {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 24px;
}

.price-reveal {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin: 24px 0;
}

.cta-button {
    background-color: #2563eb;
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Final CTA Section */
.final-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.95;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.submit-button:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 20px;
    background-color: #f9fafb;
}

.disclaimer {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #6b7280;
    font-style: italic;
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-block {
    flex: 1;
    min-width: 250px;
}

.footer-block h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-block p {
    font-size: 0.875rem;
    line-height: 1.6;
}

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

.footer-block ul li {
    margin-bottom: 8px;
}

.footer-block ul li a {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.97);
    backdrop-filter: blur(10px);
    padding: 24px;
    z-index: 9999;
    border-top: 2px solid #374151;
    display: none;
}

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

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

.cookie-content p {
    color: #d1d5db;
    font-size: 0.95rem;
    flex: 1;
    margin: 0;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.accept-btn,
.reject-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

/* Page Header */
.page-header {
    margin-top: 120px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.header-content p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 20px;
    background-color: #fff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 450px;
    background-color: #e5e7eb;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.service-detail-content > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    margin-top: 24px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #4b5563;
}

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

.service-pricing {
    margin: 24px 0;
}

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

.period {
    font-size: 1.125rem;
    color: #6b7280;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 20px;
    background-color: #fef3c7;
    text-align: center;
}

.cta-banner-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.cta-banner-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 32px;
}

.cta-button-large {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 18px 48px;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

/* About Page Styles */
.about-hero {
    margin-top: 120px;
}

.about-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 40px;
    text-align: center;
}

.about-hero-content img {
    width: 100%;
    border-radius: 16px;
}

.story-section {
    padding: 100px 20px;
    background-color: #f9fafb;
}

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

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 24px;
}

.values-section {
    padding: 100px 20px;
    background-color: #fff;
}

.values-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.values-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background: #f9fafb;
    border-radius: 12px;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
}

.team-section {
    padding: 100px 20px;
    background-color: #f3f4f6;
}

.team-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.team-header p {
    font-size: 1.125rem;
    color: #6b7280;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 0 320px;
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.role {
    font-size: 0.95rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
}

.numbers-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.numbers-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.stats-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

.approach-section {
    padding: 100px 20px;
    background-color: #fff;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.approach-text > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 32px;
}

.approach-steps {
    list-style: none;
    counter-reset: step-counter;
}

.approach-steps li {
    counter-increment: step-counter;
    margin-bottom: 24px;
    padding-left: 48px;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.approach-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.approach-image {
    flex: 0 0 450px;
    background-color: #e5e7eb;
}

.cta-about {
    padding: 80px 20px;
    background-color: #fef3c7;
    text-align: center;
}

.cta-about-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.cta-about-content p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 32px;
}

/* Contact Page Styles */
.contact-hero {
    margin-top: 120px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.contact-main {
    padding: 80px 20px;
    background-color: #fff;
}

.contact-info-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

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

.location-image {
    flex: 1;
    background-color: #e5e7eb;
}

.additional-info {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 40px;
    background-color: #f9fafb;
    border-radius: 12px;
}

.additional-info h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.additional-info p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

.contact-faq {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-faq h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 40px;
}

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

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

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
}

.contact-map-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.contact-map-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.map-info p {
    font-size: 1rem;
    color: #4b5563;
}

/* Thanks Page Styles */
.thanks-hero {
    margin-top: 120px;
    padding: 100px 20px;
    background-color: #f9fafb;
}

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

.thanks-icon {
    margin: 0 auto 32px;
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 1.375rem;
    color: #4b5563;
    margin-bottom: 60px;
}

.thanks-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 40px;
}

.next-steps {
    text-align: left;
    margin-bottom: 60px;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

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

.step-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.step-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
}

.selected-service-info {
    margin: 40px 0;
    padding: 20px;
    background-color: #dbeafe;
    border-radius: 8px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1e40af;
}

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

.btn-secondary:hover {
    background-color: #eff6ff;
}

.additional-resources {
    padding: 80px 20px;
    background-color: #fff;
}

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

.resources-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 60px;
}

.resource-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 32px;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.resource-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 20px;
}

.resource-card a {
    color: #2563eb;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    margin-top: 120px;
    padding: 80px 20px;
    background-color: #fff;
}

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

.legal-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.legal-updated {
    font-size: 0.95rem;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 32px;
    margin-bottom: 16px;
}

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

.legal-content ul {
    margin: 20px 0 20px 24px;
}

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .split-layout,
    .wide-asymmetric,
    .approach-content,
    .service-detail-card,
    .contact-info-section {
        flex-direction: column;
    }

    .method-image,
    .approach-image,
    .service-detail-image {
        flex: 1;
        max-width: 100%;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        padding: 12px 20px;
        gap: 20px;
    }

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

    .hero-overlay p {
        font-size: 1.125rem;
    }

    .card-trio,
    .values-grid,
    .team-grid,
    .stats-grid {
        flex-direction: column;
    }

    .service-cards-stacked .service-card {
        padding: 32px;
    }

    .form-wrapper {
        padding: 32px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

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

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 1.75rem;
    }

    .split-text h2,
    .centered-content h2,
    .method-text h2 {
        font-size: 2rem;
    }
}