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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #1e40af;
}

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

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

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.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: #1a202c;
}

/* Navigation - Split Screen Style */
.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

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

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
}

.hero-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-lead {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-right {
    flex: 1;
    height: 600px;
}

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

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

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

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

.cta-secondary {
    background: #10b981;
    color: #ffffff;
}

.cta-secondary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Trust Strip */
.trust-strip {
    background: #f9fafb;
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.trust-strip .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
}

.trust-label {
    font-size: 0.95rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background: #ffffff;
}

.problem-section h2 {
    margin-bottom: 2rem;
}

/* Insight Split */
.insight-split {
    padding: 5rem 0;
    background: #f9fafb;
}

.insight-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    gap: 4rem;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-image {
    flex: 1;
}

.insight-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonial-section {
    padding: 5rem 0;
    background: #1f2937;
    color: #ffffff;
}

.testimonial-section .container {
    display: flex;
    gap: 3rem;
}

.testimonial-card {
    flex: 1;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #93c5fd;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: #ffffff;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.service-card.featured {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    border-color: #2563eb;
}

.service-card.featured h3,
.service-card.featured p {
    color: #ffffff;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #10b981;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1.5rem 0;
}

.service-card.featured .price {
    color: #ffffff;
}

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

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

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

.service-card.featured .btn-select:hover {
    background: #f3f4f6;
}

/* Urgency Section */
.urgency-section {
    padding: 5rem 0;
    background: #fef3c7;
    text-align: center;
}

.urgency-section h2 {
    margin-bottom: 1.5rem;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: #ffffff;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    gap: 2rem;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
}

/* Benefits Reveal */
.benefits-reveal {
    padding: 5rem 0;
    background: #f9fafb;
}

.benefits-reveal h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.benefit-item h4 {
    color: #2563eb;
    margin-bottom: 0.75rem;
}

/* CTA Form Section */
.cta-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: #ffffff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Forms */
.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    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;
}

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

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

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: #1f2937;
    color: #ffffff;
    text-align: center;
}

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

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

/* Footer */
.site-footer {
    background: #111827;
    color: #9ca3af;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

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

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

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

.footer-col a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: #2563eb;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    transition: bottom 0.3s ease;
    z-index: 99;
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #ffffff;
    color: #2563eb;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #f3f4f6;
    transform: scale(1.05);
}

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

.page-hero h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #dbeafe;
}

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

.team-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
    margin-bottom: 0.5rem;
}

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

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: #ffffff;
}

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

.values-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.value-block {
    flex: 1 1 calc(50% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

.value-block h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Numbers Section */
.numbers-section {
    padding: 5rem 0;
    background: #1f2937;
    color: #ffffff;
}

.numbers-section h2 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.number-card {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

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

.number-label {
    font-size: 0.95rem;
    color: #d1d5db;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: #ffffff;
}

.cta-about {
    padding: 5rem 0;
    background: #f9fafb;
    text-align: center;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 0;
}

.service-detail-card {
    display: flex;
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    gap: 3rem;
    position: relative;
}

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

.service-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #10b981;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

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

.service-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

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

.service-time {
    color: #6b7280;
    font-style: italic;
    margin-top: 1rem;
}

.service-detail-price {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.price-large {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.btn-select-large {
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.comparison-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.arrow {
    font-size: 2rem;
    color: #2563eb;
    margin: 1rem 0;
}

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

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 0;
    background: #ecfdf5;
    text-align: center;
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background: #ffffff;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 3rem 0;
}

.contact-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    gap: 4rem;
    align-items: center;
}

.contact-details {
    flex: 1;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-section {
    padding: 5rem 0;
    background: #f9fafb;
}

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

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 250px;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #2563eb;
}

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

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

.thanks-hero h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.25rem;
    color: #d1fae5;
}

.thanks-info {
    padding: 5rem 0;
    background: #ffffff;
}

.thanks-info h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.next-steps {
    max-width: 800px;
    margin: 0 auto;
}

.next-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

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

.step-content h3 {
    margin-bottom: 0.5rem;
}

.thanks-service-info {
    padding: 3rem 0;
    background: #f9fafb;
    text-align: center;
}

.thanks-resources {
    padding: 5rem 0;
    background: #ffffff;
}

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

.resource-cards {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.resource-card {
    flex: 1;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    text-align: center;
}

.resource-card h3 {
    margin-bottom: 1rem;
    color: #2563eb;
}

.link-arrow {
    color: #2563eb;
    font-weight: 600;
}

.thanks-check-email {
    padding: 3rem 0;
    background: #fef3c7;
    text-align: center;
}

/* Legal Pages */
.legal-hero {
    background: #f9fafb;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.legal-date {
    color: #6b7280;
    font-style: italic;
}

.legal-content {
    padding: 4rem 0;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.legal-content ul,
.legal-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .split-nav {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-right {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

    .hero-left {
        padding: 2rem 1.5rem;
    }

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

    .hero-right {
        height: 400px;
    }

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

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

    .testimonial-section .container {
        flex-direction: column;
    }

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

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

    .steps-layout {
        flex-direction: column;
    }

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

    .benefit-item {
        flex: 1 1 100%;
    }

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

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

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

    .team-member {
        flex: 1 1 100%;
    }

    .values-layout {
        flex-direction: column;
    }

    .value-block {
        flex: 1 1 100%;
    }

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

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

    .service-detail-card {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

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

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

    .faq-item {
        flex: 1 1 100%;
    }

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