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

:root {
    --primary-color: #1a4d6f;
    --secondary-color: #2c7da0;
    --accent-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.header-split {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.nav-menu {
    display: none;
    list-style: none;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

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

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

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

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

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px;
    background-color: var(--primary-color);
    color: white;
}

.hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-right {
    min-height: 300px;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

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

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

.intro-left {
    overflow: hidden;
}

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

.intro-right {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.3;
}

.intro-right p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
}

.link-arrow {
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

.link-arrow:after {
    content: ' →';
}

.stats-split {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    padding: 40px 20px;
}

.stats-left,
.stats-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.services-section {
    padding: 60px 20px;
    background-color: white;
}

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

.section-header-center h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-left {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-left h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-left p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
}

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

.service-right {
    padding: 30px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-box {
    text-align: center;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

.btn-service {
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section-split {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-light);
    padding: 60px 20px;
}

.form-left {
    padding: 30px 0;
}

.form-left h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-left p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.benefit-icon {
    width: 24px;
    height: 24px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.form-right {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    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(--secondary-color);
}

.btn-submit {
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.testimonials-split {
    padding: 60px 20px;
    background-color: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header h2 {
    font-size: 32px;
    color: var(--primary-color);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 15px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

.cta-split {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 18px;
    color: white;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #d35400;
    transform: translateY(-3px);
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 50px 20px 20px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

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

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

.page-hero-split {
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.page-hero-split .hero-left {
    background-color: var(--secondary-color);
}

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

.about-story-split,
.method-split {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
}

.story-left,
.method-right {
    min-height: 300px;
    overflow: hidden;
}

.story-right,
.method-left {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-right h2,
.method-left h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.story-right p,
.method-left p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.section-title-center {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.values-grid-split {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-split {
    padding: 60px 20px;
    background-color: white;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 20px 20px 8px;
}

.team-role {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin: 0 20px 12px;
}

.team-member p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 20px 20px;
}

.method-steps {
    list-style: none;
    counter-reset: step-counter;
}

.method-steps li {
    counter-increment: step-counter;
    padding: 15px 0;
    position: relative;
    padding-left: 50px;
}

.method-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 15px;
    width: 35px;
    height: 35px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.services-detail-section {
    padding: 60px 20px;
    background-color: white;
}

.service-detail-card-split {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-detail-card-split.highlight {
    border: 2px solid var(--accent-color);
}

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

.service-detail-left h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-intro {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-detail-left h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 25px 0 15px;
}

.service-includes {
    list-style: none;
    margin-bottom: 20px;
}

.service-includes li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-includes li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.service-suited {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 15px;
}

.service-detail-right {
    padding: 40px 30px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-detail-box {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-large {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-label-large {
    font-size: 15px;
    color: var(--text-light);
}

.btn-service-large {
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-large:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.faq-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-split-section {
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
}

.contact-info-left {
    padding: 30px 0;
}

.contact-info-left h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-detail p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-detail a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-note p {
    font-size: 15px;
    color: var(--text-dark);
}

.contact-map-right {
    min-height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.approach-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-step {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
    padding-left: 80px;
}

.step-number {
    position: absolute;
    left: 25px;
    top: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.approach-step h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.approach-step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page {
    padding: 60px 20px;
    background-color: white;
}

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

.legal-container h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.legal-container h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 35px 0 15px;
}

.legal-container h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 25px 0 12px;
}

.legal-container p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-container ul li {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

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

.cookie-table td {
    font-size: 14px;
    color: var(--text-dark);
}

.thanks-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    background-color: white;
    padding: 50px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-details {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.thanks-details p {
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next {
    text-align: left;
    margin: 30px 0;
}

.thanks-next h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.thanks-steps {
    padding-left: 20px;
}

.thanks-steps li {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .header-split {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
    }

    .header-right {
        margin-top: 0;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        gap: 30px;
    }

    .menu-toggle {
        display: none;
    }

    .hero-split {
        flex-direction: row;
        min-height: 600px;
    }

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

    .hero-content {
        max-width: 550px;
        padding: 0 40px;
    }

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

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

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

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

    .intro-right {
        padding: 60px 50px;
    }

    .stats-split {
        flex-direction: row;
        padding: 60px 40px;
        gap: 30px;
    }

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

    .services-section {
        padding: 80px 40px;
    }

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

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

    .service-left {
        flex: 2;
        padding: 40px;
    }

    .service-right {
        flex: 1;
        padding: 40px;
    }

    .form-section-split {
        flex-direction: row;
        padding: 80px 40px;
        gap: 50px;
    }

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

    .form-right {
        padding: 40px;
    }

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

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

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

    .footer-col {
        flex: 1;
    }

    .page-hero-split {
        flex-direction: row;
        min-height: 500px;
    }

    .page-hero-split .hero-left,
    .page-hero-split .hero-right {
        flex: 1;
    }

    .about-story-split {
        flex-direction: row;
        padding: 80px 40px;
    }

    .about-story-split .story-left,
    .about-story-split .story-right {
        flex: 1;
    }

    .about-story-split .story-right {
        padding: 60px 50px;
    }

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

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

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

    .team-member {
        flex: 1 1 calc(33.333% - 20px);
    }

    .method-split {
        flex-direction: row;
        padding: 80px 40px;
    }

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

    .method-left {
        padding: 60px 50px 60px 0;
    }

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

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

    .service-detail-left {
        flex: 2;
        padding: 50px 40px;
    }

    .service-detail-right {
        flex: 1;
        padding: 50px 40px;
    }

    .contact-split-section {
        flex-direction: row;
        padding: 80px 40px;
        gap: 50px;
    }

    .contact-info-left,
    .contact-map-right {
        flex: 1;
    }

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

    .approach-step {
        flex: 1 1 calc(50% - 15px);
    }
}

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

    .hero-subtitle {
        font-size: 20px;
    }

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

    .testimonial-card {
        flex: 1 1 calc(33.333% - 17px);
    }
}
