/* 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: #2c3e50;
    background-color: #ffffff;
}

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

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

a:hover {
    color: #1e40af;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    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;
}

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

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

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

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

/* Hero Section */
.hero-overlay {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 2;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.15;
    z-index: 1;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: #ffffff;
    padding: 6rem 1.5rem 4rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

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

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

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.submit-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

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

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

.submit-btn {
    background-color: #10b981;
    color: #ffffff;
    width: 100%;
}

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

/* Intro Story Section */
.intro-story {
    background-color: #f8fafc;
    padding: 5rem 1.5rem;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.narrow-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

/* Problem Amplify Section */
.problem-amplify {
    padding: 5rem 1.5rem;
}

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.content-block p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #475569;
}

.image-block {
    flex: 1;
}

.image-block img {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.insight-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.insight-card p {
    color: #475569;
}

/* Trust Builder Section */
.trust-builder {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.stats-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

/* Scenario Section */
.scenario-section {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.scenario-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.scenario-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1e293b;
}

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

.option-bad,
.option-good {
    padding: 2rem;
    border-radius: 12px;
}

.option-bad {
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
}

.option-good {
    background-color: #f0fdf4;
    border-left: 4px solid #10b981;
}

.option-bad h3,
.option-good h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.option-bad ul,
.option-good ul {
    list-style-position: inside;
    padding-left: 0;
}

.option-bad li,
.option-good li {
    margin-bottom: 0.75rem;
}

/* Testimonial Section */
.testimonial-inline {
    padding: 4rem 1.5rem;
    background-color: #f8fafc;
}

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

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1.125rem;
    font-style: normal;
    color: #64748b;
}

/* Visual Showcase */
.visual-showcase {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

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

.showcase-item {
    text-align: center;
}

.showcase-item img {
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.showcase-item p {
    font-size: 1rem;
    color: #475569;
}

/* Deep Dive Section */
.deep-dive {
    padding: 5rem 1.5rem;
    background-color: #f1f5f9;
}

.deep-dive h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

/* Benefit Reveal Section */
.benefit-reveal {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.centered-heading {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.benefits-stacked {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.benefit-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-icon {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    min-width: 60px;
    text-align: center;
}

.benefit-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.benefit-text p {
    color: #475569;
    line-height: 1.7;
}

/* Social Proof */
.social-proof {
    padding: 5rem 1.5rem;
    background-color: #f8fafc;
}

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

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.testimonial-card cite {
    font-size: 1rem;
    font-style: normal;
    color: #64748b;
}

/* Expertise Section */
.expertise-section {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

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

/* Services Pricing Section */
.services-pricing {
    padding: 5rem 1.5rem;
    background-color: #f1f5f9;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 3rem;
}

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

.price-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

.price-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

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

.features-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #475569;
}

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

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

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

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

/* Urgency Section */
.urgency-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    text-align: center;
}

.urgency-container {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.urgency-container p {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 1rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.final-cta-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.cta-subtext {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 3rem;
}

/* Forms */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

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

.form-group textarea {
    resize: vertical;
}

/* Footer */
.site-footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 3rem 1.5rem 1.5rem;
}

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

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

.footer-column p {
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

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

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

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

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

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

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

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

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

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

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

.cookie-btn.reject {
    background-color: #64748b;
    color: #ffffff;
}

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

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

.sticky-cta-btn {
    padding: 1rem 2rem;
    background-color: #10b981;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

/* About Page */
.about-story {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

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

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

.story-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

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

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

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.value-card p {
    color: #475569;
}

.team-approach {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.difference-section {
    padding: 5rem 1.5rem;
    background-color: #f1f5f9;
}

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

.difference-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.difference-item p {
    color: #475569;
}

.commitment-section {
    padding: 5rem 1.5rem;
    background-color: #ffffff;
}

.cta-about {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-about .cta-primary,
.cta-about .cta-secondary {
    margin: 0.5rem;
}

/* Services Page */
.services-intro {
    padding: 3rem 1.5rem;
    background-color: #ffffff;
}

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

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.intro-content p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #475569;
}

.detailed-services {
    padding: 3rem 1.5rem;
    background-color: #f8fafc;
}

.service-detail {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

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

.popular-label {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.service-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

.detailed-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.detailed-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #475569;
}

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

.best-for {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.additional-info {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

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

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

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

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

.booking-cta {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.booking-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.booking-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

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

.contact-info,
.contact-details {
    flex: 1;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.info-block p {
    color: #475569;
    margin-bottom: 0.5rem;
}

.note {
    font-size: 0.938rem;
    color: #64748b;
    font-style: italic;
}

.checklist {
    list-style-position: inside;
    padding-left: 0;
    margin-bottom: 2rem;
}

.checklist li {
    margin-bottom: 0.75rem;
    color: #475569;
}

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

.faq-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

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

.visit-section {
    padding: 4rem 1.5rem;
    background-color: #f8fafc;
}

.visit-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.visit-section p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #475569;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.success-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    background-color: #ffffff;
    color: #10b981;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

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

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.service-reference {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.selected-service {
    font-size: 1.125rem;
}

.next-steps {
    background-color: #ffffff;
    color: #1e293b;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
}

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

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

.step-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.step-content p {
    color: #475569;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.while-you-wait {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.while-you-wait h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

.resource-card {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

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

/* Legal Pages */
.legal-page {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

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

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

.updated {
    color: #64748b;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.legal-content h4 {
    font-size: 1.125rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #475569;
}

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

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

.legal-content li {
    margin-bottom: 0.5rem;
    color: #475569;
}

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

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

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

.cookie-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

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

/* Responsive Design - Tablet and up */
@media (min-width: 768px) {
    .nav-container {
        flex-direction: row;
    }

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

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

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

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

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

    .stats-row {
        flex-direction: row;
        justify-content: space-around;
    }

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

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

    .showcase-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .benefit-row {
        flex-direction: row;
        align-items: flex-start;
    }

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

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

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

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

    .form-row {
        flex-direction: row;
    }

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

    .footer-column {
        flex: 1;
    }

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

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

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

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

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

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

    .step-item {
        flex-direction: row;
    }

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

    .resource-card {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

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

/* Desktop optimizations */
@media (min-width: 1024px) {
    .insight-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

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

    .price-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

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