* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #159895;
    --accent-color: #57c5b6;
    --dark-color: #002b36;
    --light-color: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
}

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

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.header-right a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.header-right a:hover,
.header-right a.active {
    color: var(--primary-color);
}

.nav-cta {
    padding: 10px 24px;
    background-color: var(--primary-color);
    color: #ffffff !important;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left,
.hero-right {
    flex: 1;
    min-width: 0;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: var(--light-color);
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-right {
    height: 85vh;
    overflow: hidden;
}

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

.split-reverse,
.split-standard {
    display: flex;
    align-items: stretch;
}

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

.split-image-left,
.split-image-right,
.split-content-left,
.split-content-right {
    flex: 1;
    min-width: 0;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.split-content-left,
.split-content-right {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-right {
    background-color: #fafbfc;
}

h2 {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 24px;
}

h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.insight-points {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.point {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    color: var(--text-dark);
}

.point-icon {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 700;
}

.btn-primary,
.btn-secondary,
.btn-large,
.btn-primary-large {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

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

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

.btn-large,
.btn-primary-large {
    padding: 18px 48px;
    font-size: 18px;
}

.btn-primary-large {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary-large:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.problem-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.centered {
    text-align: center;
}

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

.trust-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.testimonials-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: var(--light-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
}

.services-reveal {
    padding: 100px 20px;
    background-color: #fafbfc;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

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

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background-color: var(--secondary-color);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0;
    flex-grow: 1;
}

.service-features span {
    font-size: 15px;
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
}

.service-features span:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 24px 0;
}

.btn-service {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cta-split-block {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
}

.cta-left {
    flex: 1.5;
    padding-right: 40px;
}

.cta-left h2 {
    color: #ffffff;
    font-size: 38px;
}

.cta-left p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cta-right .btn-large {
    background-color: #ffffff;
    color: var(--primary-color);
}

.cta-right .btn-large:hover {
    background-color: var(--light-color);
    transform: scale(1.05);
}

.how-it-works-split {
    display: flex;
    min-height: 700px;
}

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

.step {
    display: flex;
    gap: 24px;
}

.step-number {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h4 {
    margin-bottom: 8px;
}

.step-content p {
    margin-bottom: 0;
}

.urgency-block {
    padding: 100px 20px;
    background-color: #fff8f0;
}

.urgency-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 17px;
    color: var(--text-light);
    max-width: 300px;
}

.form-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.form-container-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--light-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.form-left,
.form-right {
    flex: 1;
    padding: 60px;
}

.form-left {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: #ffffff;
}

.form-left h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.form-left p {
    color: rgba(255, 255, 255, 0.9);
}

.form-benefits {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.check-icon {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 700;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    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(--primary-color);
}

.btn-submit {
    padding: 16px;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-privacy {
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: underline;
}

.final-cta-split {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.footer-split {
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p,
.footer-col a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--accent-color);
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-button {
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.btn-accept {
    background-color: var(--secondary-color);
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
    border-color: #ffffff;
}

.page-hero-split {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
}

.hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-centered h1 {
    color: #ffffff;
    margin-bottom: 24px;
}

.hero-content-centered .lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-story-split,
.mission-split,
.services-intro-split {
    display: flex;
    align-items: center;
}

.values-section {
    padding: 100px 20px;
    background-color: var(--light-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.team-approach {
    padding: 100px 20px;
    background-color: #ffffff;
}

.approach-split-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.approach-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 40px;
    background-color: var(--light-color);
    border-radius: 12px;
}

.approach-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.stats-section-split {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: #ffffff;
}

.stats-section-split h2 {
    color: #ffffff;
}

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

.stat-box {
    flex: 1 1 200px;
    text-align: center;
}

.stat-big {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.stat-box p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-about {
    padding: 100px 20px;
    background-color: #ffffff;
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail-card {
    display: flex;
    margin-bottom: 60px;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 500px;
}

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

.service-detail-left,
.service-detail-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-card.reverse .service-detail-left {
    padding: 0;
}

.service-detail-card.reverse .service-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-tagline {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-features {
    margin: 30px 0;
}

.service-detail-features ul {
    list-style: none;
    padding: 0;
}

.service-detail-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.service-detail-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-fit {
    padding: 20px;
    background-color: #f0f9ff;
    border-radius: 8px;
    margin-top: 24px;
    font-size: 16px;
    color: var(--text-dark);
}

.service-price-box {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.badge-popular {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--secondary-color);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
}

.badge-premium {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
}

.premium-card {
    border: 3px solid #ffd700;
}

.comparison-section {
    padding: 100px 20px;
    background-color: var(--light-color);
}

.contact-split-section {
    padding: 80px 20px;
}

.contact-split-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.contact-info-left {
    flex: 1;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
}

.contact-block a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-note {
    padding: 24px;
    background-color: #fff8f0;
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

.contact-map-right {
    flex: 1;
}

.contact-map-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.contact-cta-section {
    padding: 100px 20px;
    background-color: var(--light-color);
}

.thanks-section {
    padding: 120px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--success-color);
    color: #ffffff;
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.thanks-container h1 {
    font-size: 48px;
    color: var(--dark-color);
    margin-bottom: 24px;
}

.thanks-lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-service {
    padding: 20px;
    background-color: #f0f9ff;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-info {
    margin: 60px 0;
}

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

.thanks-step {
    flex: 1;
    max-width: 200px;
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 16px;
}

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

.legal-page {
    padding: 80px 20px;
    min-height: 70vh;
}

.legal-page h1 {
    font-size: 48px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.legal-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-back {
    margin-top: 60px;
    text-align: center;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 36px;
    }

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

    .urgency-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-right {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .header-right.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left {
        padding: 60px 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-right {
        height: 400px;
    }

    .split-reverse,
    .split-standard,
    .how-it-works-split,
    .about-story-split,
    .mission-split,
    .services-intro-split {
        flex-direction: column;
    }

    .split-content-left,
    .split-content-right {
        padding: 60px 30px;
    }

    .cta-split-block {
        flex-direction: column;
        padding: 60px 30px;
    }

    .cta-left {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .form-container-split {
        flex-direction: column;
    }

    .form-left,
    .form-right {
        padding: 40px 30px;
    }

    .urgency-stats {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

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

    .service-detail-left,
    .service-detail-right {
        padding: 40px 30px;
    }

    .service-detail-card.reverse .service-detail-left {
        padding: 0;
    }

    .service-detail-card.reverse .service-detail-left img {
        min-height: 300px;
    }

    .contact-split-container {
        flex-direction: column;
    }

    .thanks-steps {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-lead,
    p {
        font-size: 16px;
    }

    .header-split {
        padding: 15px 20px;
    }

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

    .value-card,
    .approach-item {
        flex: 1 1 100%;
    }
}