/* 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: #2d3748;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.btn-accept {
    background: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background: #38a169;
}

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.nav-minimal {
    background: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2b6cb0;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #2d3748;
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    display: flex;
}

.nav-menu a {
    padding: 12px 0;
    color: #2d3748;
    font-weight: 500;
    border-bottom: 1px solid #e2e8f0;
}

.nav-menu a:hover {
    color: #2b6cb0;
}

/* Content Containers */
.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Story Section */
.hero-story {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(26, 32, 44, 0.85);
    width: 100%;
    padding: 80px 20px;
}

.hero-content-narrow {
    max-width: 720px;
    margin: 0 auto;
    color: #ffffff;
    text-align: center;
}

.hero-story h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    background: #48bb78;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
}

.cta-hero:hover {
    background: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
}

/* Story Sections */
.story-intro,
.insight-reveal,
.method-breakdown,
.credibility-layer,
.urgency-inject,
.final-push {
    padding: 60px 20px;
}

.story-intro {
    background: #f7fafc;
}

.story-hook {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a202c;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 16px;
}

.emphasis {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    color: #2b6cb0;
    margin-top: 32px;
}

/* Problem Amplification */
.problem-amplify {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.problem-amplify h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 32px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.7;
}

.cta-inline {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.cta-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Insight Reveal */
.insight-reveal h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
}

.story-continuation {
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 16px;
}

.results-list {
    list-style: none;
    margin: 24px 0;
}

.results-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 18px;
}

.results-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
    font-size: 20px;
}

/* Trust Proof */
.trust-proof {
    padding: 80px 20px;
    background: #edf2f7;
}

.trust-proof h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial {
    background: #ffffff;
    padding: 32px;
    border-radius: 10px;
    border-left: 5px solid #2b6cb0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.quote {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
    color: #2d3748;
}

.author {
    font-weight: 600;
    color: #718096;
    font-size: 16px;
}

/* Method Breakdown */
.method-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.method-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.method-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #2b6cb0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.method-text h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a202c;
}

.method-text p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

/* Credibility Layer */
.credibility-layer {
    background: #ffffff;
}

.stat-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: #f7fafc;
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #2b6cb0;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #718096;
    font-weight: 500;
}

/* Urgency */
.urgency-inject {
    background: #fff5f5;
    border-top: 4px solid #fc8181;
    border-bottom: 4px solid #fc8181;
}

.urgency-calc {
    font-size: 20px;
    font-weight: 600;
    color: #c53030;
    margin-top: 24px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    border-left: 5px solid #fc8181;
}

/* Services Reveal */
.services-reveal {
    padding: 80px 20px;
    background: #ffffff;
}

.services-reveal h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a202c;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #718096;
    margin-bottom: 48px;
}

.services-grid-funnel {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.service-card:hover {
    border-color: #2b6cb0;
    box-shadow: 0 10px 30px rgba(43, 108, 176, 0.15);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: #2b6cb0;
    background: linear-gradient(135deg, #ebf8ff 0%, #ffffff 100%);
}

.service-card.premium {
    border-color: #d69e2e;
    background: linear-gradient(135deg, #fefcbf 0%, #ffffff 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #2b6cb0;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.premium-badge {
    background: #d69e2e;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-desc {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #2d3748;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #2b6cb0;
    font-size: 20px;
    font-weight: 700;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: #2b6cb0;
    margin: 24px 0 20px;
}

.btn-select-service {
    width: 100%;
    padding: 16px;
    background: #2b6cb0;
    color: #ffffff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.btn-select-service:hover {
    background: #2c5282;
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    background: #f7fafc;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #718096;
    margin-bottom: 40px;
}

.main-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2b6cb0;
}

.form-group input[readonly] {
    background: #f7fafc;
    color: #4a5568;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #48bb78;
    color: #ffffff;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
}

.btn-submit:hover {
    background: #38a169;
}

/* Final Push */
.final-push {
    background: #1a202c;
    color: #ffffff;
}

.final-push h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.final-statement {
    font-size: 22px;
    font-weight: 600;
    margin-top: 32px;
    color: #48bb78;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2b6cb0;
    padding: 16px 20px;
    z-index: 999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.sticky-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.btn-sticky {
    background: #48bb78;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-sticky:hover {
    background: #38a169;
}

/* Footer */
.footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 60px 20px 20px;
}

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

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    text-align: center;
    font-size: 14px;
}

/* Page Hero */
.page-hero,
.about-hero,
.contact-hero,
.legal-hero,
.thanks-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2b6cb0 0%, #1a365d 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1,
.about-hero h1,
.contact-hero h1,
.legal-hero h1,
.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 800;
}

.lead,
.about-lead,
.contact-lead,
.thanks-lead {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.legal-updated {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 8px;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 20px;
}

.service-detail-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 32px;
    position: relative;
}

.featured-service {
    border-color: #2b6cb0;
    background: linear-gradient(135deg, #ebf8ff 0%, #ffffff 100%);
}

.premium-service {
    border-color: #d69e2e;
    background: linear-gradient(135deg, #fefcbf 0%, #ffffff 100%);
}

.popular-tag,
.premium-tag {
    position: absolute;
    top: -14px;
    left: 24px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.popular-tag {
    background: #2b6cb0;
}

.premium-tag {
    background: #d69e2e;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.service-detail-header h2 {
    font-size: 28px;
    color: #1a202c;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: #2b6cb0;
}

.service-detail-body h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #2d3748;
}

.service-detail-body ul {
    list-style: none;
    margin: 16px 0;
}

.service-detail-body ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    line-height: 1.6;
}

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

.btn-service-cta {
    display: inline-block;
    background: #2b6cb0;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 24px;
}

.btn-service-cta:hover {
    background: #2c5282;
}

/* About Page */
.about-story,
.mission-section,
.values-section,
.team-impact,
.approach-section,
.philosophy-section {
    padding: 60px 20px;
}

.about-story {
    background: #f7fafc;
}

.about-story h2,
.mission-section h2,
.values-section h2,
.team-impact h2,
.approach-section h2,
.philosophy-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
}

.difference-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.difference-item {
    padding: 24px;
    background: #f7fafc;
    border-radius: 10px;
    border-left: 5px solid #2b6cb0;
}

.difference-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.value-item {
    margin: 32px 0;
    padding: 24px;
    background: #ebf8ff;
    border-radius: 10px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5282;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.approach-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    background: #2b6cb0;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
}

.approach-step h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a202c;
}

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

.cta-about h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.btn-cta-large {
    display: inline-block;
    background: #2b6cb0;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
}

.btn-cta-large:hover {
    background: #2c5282;
    transform: translateY(-2px);
}

/* Contact Page */
.contact-info-section {
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-method {
    padding: 32px;
    background: #f7fafc;
    border-radius: 10px;
}

.contact-method h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
}

.contact-link {
    color: #2b6cb0;
    font-weight: 600;
    font-size: 18px;
}

.contact-link:hover {
    text-decoration: underline;
}

address {
    font-style: normal;
    line-height: 1.8;
}

.hours-detail {
    line-height: 1.8;
    margin: 16px 0;
}

.hours-note {
    font-size: 14px;
    color: #718096;
    margin-top: 12px;
}

.contact-faq,
.service-guarantee {
    padding: 60px 20px;
    background: #ffffff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.contact-cta {
    padding: 80px 20px;
    background: #ebf8ff;
    text-align: center;
}

/* Thanks Page */
.thanks-details {
    padding: 60px 20px;
}

.confirmation-box {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 32px;
}

.confirmation-box h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #1a202c;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a202c;
}

.service-confirmation {
    background: #ebf8ff;
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 32px;
}

.service-confirmation h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d3748;
}

.selected-service-name {
    font-size: 24px;
    font-weight: 700;
    color: #2b6cb0;
}

.thanks-resources {
    padding: 60px 20px;
    background: #f7fafc;
}

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.resource-item {
    padding: 24px;
    background: #ffffff;
    border-radius: 10px;
    border-left: 5px solid #48bb78;
}

.resource-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a202c;
}

.resource-note {
    text-align: center;
    font-size: 14px;
    color: #718096;
    margin-top: 24px;
}

.thanks-contact {
    padding: 60px 20px;
    text-align: center;
}

.contact-email {
    font-size: 18px;
    margin-top: 16px;
}

.contact-email a {
    color: #2b6cb0;
    font-weight: 600;
}

.contact-email a:hover {
    text-decoration: underline;
}

/* Legal Pages */
.legal-content {
    padding: 60px 20px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #1a202c;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: #2d3748;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

.cookie-table th {
    background: #f7fafc;
    font-weight: 600;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        gap: 32px;
    }

    .nav-menu a {
        padding: 0;
        border-bottom: none;
    }

    .hero-story h1 {
        font-size: 48px;
    }

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

    .problem-card {
        flex: 1 1 calc(50% - 12px);
    }

    .testimonial-flow {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1 1 calc(50% - 16px);
    }

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

    .stat-item {
        flex: 1;
    }

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

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

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

    .footer-section {
        flex: 1;
    }

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

    .difference-item {
        flex: 1 1 calc(50% - 16px);
    }

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

    .contact-method {
        flex: 1;
    }

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

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-story h1 {
        font-size: 56px;
    }

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

    .problem-card {
        flex: 1 1 calc(50% - 12px);
    }

    .sticky-cta {
        display: block;
    }

    .services-grid-funnel .service-card {
        flex: 1 1 calc(33.333% - 22px);
    }

    .difference-grid .difference-item {
        flex: 1 1 calc(50% - 16px);
    }
}

@media (min-width: 1200px) {
    .problem-grid {
        flex-wrap: nowrap;
    }

    .problem-card {
        flex: 1;
    }
}