:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7f;
    --accent-color: #4a90b8;
    --text-dark: #1e1e1e;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
}

* {
    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: var(--text-dark);
    background-color: var(--background-white);
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.main-nav {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: none;
    list-style: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

.nav-menu li {
    padding: 0.5rem 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 70vh;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.hero-left {
    background-color: var(--background-light);
}

.hero-right {
    background-color: var(--primary-color);
    overflow: hidden;
}

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

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--background-white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--background-white);
}

.btn-submit {
    background-color: var(--accent-color);
    color: var(--background-white);
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.link-arrow {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow:after {
    content: '→';
    transition: transform 0.3s ease;
}

.link-arrow:hover:after {
    transform: translateX(5px);
}

.intro-split {
    display: flex;
    flex-direction: column;
}

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

.intro-image,
.intro-content {
    flex: 1;
    padding: 3rem 2rem;
}

.intro-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
}

.intro-image img {
    width: 100%;
    max-width: 500px;
}

.intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-content p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.problem-amplify {
    background-color: var(--background-light);
    padding: 4rem 2rem;
}

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

.content-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.problem-amplify h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.problem-card {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.problem-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.insight-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
}

.insight-left,
.insight-right {
    flex: 1;
}

.insight-left {
    margin-bottom: 3rem;
}

.insight-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.insight-left p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.service-preview-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-preview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.service-preview-card p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
}

.trust-builder {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 4rem 2rem;
}

.trust-builder h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--background-white);
}

.results-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-block blockquote {
    font-size: 1.5rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--background-white);
}

.testimonial-block cite {
    display: block;
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.approach-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
}

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

.approach-image,
.approach-content {
    flex: 1;
}

.approach-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.approach-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

.approach-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-medium);
}

.cta-form-split {
    display: flex;
    flex-direction: column;
    background-color: var(--background-light);
    padding: 4rem 2rem;
}

.cta-left,
.cta-right {
    flex: 1;
}

.cta-left {
    margin-bottom: 3rem;
}

.cta-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-left p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.main-form {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 3rem 2rem 1rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--background-white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--background-white);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: var(--background-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    line-height: 1.5;
}

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

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

.btn-cookie-accept {
    background-color: var(--accent-color);
    color: var(--background-white);
}

.btn-cookie-accept:hover {
    background-color: var(--secondary-color);
}

.btn-cookie-reject {
    background-color: transparent;
    color: var(--background-white);
    border: 2px solid var(--background-white);
}

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

.page-hero-split {
    display: flex;
    flex-direction: column;
    background-color: var(--background-light);
    padding: 4rem 2rem;
}

.page-hero-split .hero-left,
.page-hero-split .hero-right {
    flex: 1;
    padding: 2rem 0;
}

.page-hero-split .hero-left h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.page-hero-split .hero-left p {
    font-size: 1.25rem;
    color: var(--text-medium);
}

.page-hero-split .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-split .hero-right img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

.services-grid {
    padding: 4rem 2rem;
}

.service-card-split {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    gap: 2rem;
}

.service-card-split.reverse {
    flex-direction: column-reverse;
}

.service-details,
.service-image {
    flex: 1;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-details p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

.cta-banner {
    background-color: var(--background-light);
    padding: 3rem 2rem;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-banner p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.form-section {
    padding: 4rem 2rem;
}

.story-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
}

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

.story-image,
.story-content {
    flex: 1;
}

.story-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.story-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.philosophy-section {
    background-color: var(--background-light);
    padding: 4rem 2rem;
}

.philosophy-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.philosophy-card {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.philosophy-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.expertise-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
}

.expertise-left,
.expertise-right {
    flex: 1;
}

.expertise-left {
    margin-bottom: 3rem;
}

.expertise-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.expertise-left p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expertise-item {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.expertise-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.expertise-item p {
    color: var(--text-medium);
}

.values-section {
    background-color: var(--background-light);
    padding: 4rem 2rem;
}

.values-section h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.value-card {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.impact-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
}

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

.impact-image,
.impact-content {
    flex: 1;
}

.impact-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.impact-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

.impact-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.impact-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.stat-large .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-large .stat-label {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.cta-simple {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-simple h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--background-white);
}

.cta-simple p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-hero {
    background-color: var(--background-light);
    padding: 4rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-hero p {
    font-size: 1.25rem;
    color: var(--text-medium);
}

.contact-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 3rem;
}

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

.contact-info h2,
.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.info-block p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.info-block a {
    color: var(--accent-color);
    font-weight: 600;
}

.info-note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
}

.contact-steps {
    list-style: decimal;
    padding-left: 1.5rem;
}

.contact-steps li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.thanks-hero {
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.thanks-detail {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.step-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    text-align: left;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-text p {
    color: var(--text-medium);
}

.thanks-cta {
    margin-top: 3rem;
}

.thanks-cta h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-cta p {
    margin-bottom: 2rem;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.legal-page {
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.legal-page p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
    color: var(--text-medium);
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--border-color);
    padding: 1rem;
    text-align: left;
}

.cookie-table th {
    background-color: var(--background-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-medium);
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        border-bottom: none;
        padding: 0;
    }

    .nav-menu li {
        padding: 0;
        margin-left: 2rem;
    }

    .nav-menu a {
        padding: 0;
    }

    .hamburger {
        display: none;
    }

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

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

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

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

    .problem-card {
        flex: 1;
        min-width: 280px;
    }

    .insight-split {
        flex-direction: row;
        gap: 4rem;
    }

    .insight-left {
        margin-bottom: 0;
    }

    .results-split {
        flex-direction: row;
        align-items: center;
    }

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

    .approach-split {
        flex-direction: row;
        gap: 4rem;
    }

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

    .approach-image {
        margin-bottom: 0;
    }

    .cta-form-split {
        flex-direction: row;
        gap: 4rem;
    }

    .cta-left {
        margin-bottom: 0;
    }

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

    .footer-links {
        flex-direction: row;
        gap: 4rem;
    }

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

    .page-hero-split {
        flex-direction: row;
        gap: 4rem;
    }

    .page-hero-split .hero-left,
    .page-hero-split .hero-right {
        padding: 0;
    }

    .service-card-split {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
    }

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

    .story-split {
        flex-direction: row;
        gap: 4rem;
    }

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

    .story-image {
        margin-bottom: 0;
    }

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

    .philosophy-card {
        flex: 1;
        min-width: 280px;
    }

    .expertise-split {
        flex-direction: row;
        gap: 4rem;
    }

    .expertise-left {
        margin-bottom: 0;
    }

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

    .impact-split {
        flex-direction: row;
        gap: 4rem;
    }

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

    .impact-image {
        margin-bottom: 0;
    }

    .impact-stats {
        flex-direction: row;
    }

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

    .step-timeline {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .timeline-step {
        flex: 1;
        min-width: 280px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .page-hero-split .hero-left h1 {
        font-size: 3rem;
    }
}
