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

:root {
    --primary-color: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #40916c;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

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

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    padding: 20px 0;
}

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

.nav-menu li {
    padding: 12px 40px;
}

.nav-link {
    color: var(--text-medium);
    font-size: 1rem;
    font-weight: 500;
    display: block;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    background-color: var(--bg-light);
    order: 2;
}

.hero-right {
    order: 1;
    min-height: 50vh;
    overflow: hidden;
}

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

.hero-text-container {
    max-width: 540px;
}

.hero-text-container h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-primary-alt {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.trust-indicators {
    background-color: var(--bg-white);
    padding: 60px 20px;
}

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

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-medium);
}

.intro-split {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.split-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.split-image-block {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

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

.split-content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.split-content-block h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.split-content-block p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-highlight {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 700;
}

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

.service-card-split {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card-split:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-visual {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-info p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 16px;
}

.price-tag {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-service {
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.why-choose-split {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

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

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

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

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

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

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

.process-split {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 24px;
}

.process-step h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.process-step p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.cta-form-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.form-split-layout {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-intro h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.form-container {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.btn-submit {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.final-cta-split {
    background-color: var(--primary-color);
    padding: 80px 20px;
}

.split-container.dark-bg {
    background-color: var(--primary-color);
}

.split-container.dark-bg h2 {
    color: var(--bg-white);
}

.split-container.dark-bg p {
    color: rgba(255, 255, 255, 0.9);
}

.split-content-block.centered {
    text-align: center;
    padding: 40px 20px;
}

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

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--bg-white);
}

.footer-section p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-section ul li a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

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

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

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

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-cookie.reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

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

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

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

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.service-detail-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-price {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 1rem;
    color: var(--text-medium);
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.service-cta-section {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.cta-box-split {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 60px 30px;
    border-radius: 4px;
    text-align: center;
}

.cta-box-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 32px;
}

.about-story-split {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

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

.values-grid-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

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

.approach-split {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.team-expertise {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.expertise-split-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.expertise-item {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.expertise-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

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

.commitment-split {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.about-cta-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.contact-info-section {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-details h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-color);
}

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

.contact-item .note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 8px;
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

.directions-section h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 700;
}

.directions-split {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.direction-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.direction-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.direction-card p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.visit-cta-section {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.cta-box-split.centered {
    text-align: center;
}

.cta-box-split.centered a {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-box-split.centered a:hover {
    text-decoration: underline;
}

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

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-content {
    background-color: var(--bg-white);
    padding: 50px 30px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.thanks-details {
    text-align: left;
    margin-bottom: 32px;
}

.thanks-details p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-confirmation {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.next-steps {
    text-align: left;
    margin-bottom: 32px;
}

.next-steps h2 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 1rem;
    color: var(--text-medium);
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.legal-page {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px 40px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.legal-container h1 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

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

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 24px;
    font-weight: 700;
}

.legal-section p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section ul li {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-section a:hover {
    text-decoration: underline;
}

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

.cookies-table thead {
    background-color: var(--bg-light);
}

.cookies-table th {
    padding: 12px;
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookies-table td {
    padding: 12px;
    color: var(--text-medium);
    border: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

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

    .nav-menu li {
        padding: 0;
    }

    .nav-link {
        padding: 8px 16px;
    }

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

    .hero-left {
        width: 50%;
        order: 1;
        padding: 60px 50px;
    }

    .hero-right {
        width: 50%;
        order: 2;
        min-height: auto;
    }

    .hero-text-container h1 {
        font-size: 2.8rem;
    }

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

    .split-container {
        flex-direction: row;
        gap: 60px;
    }

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

    .split-image-block {
        width: 50%;
    }

    .split-content-block {
        width: 50%;
        padding: 40px;
    }

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

    .service-card-split {
        width: calc(50% - 20px);
    }

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

    .testimonial-card {
        width: calc(33.333% - 20px);
    }

    .form-split-layout {
        flex-direction: row;
        gap: 60px;
    }

    .form-intro {
        width: 40%;
    }

    .form-container {
        width: 60%;
    }

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

    .footer-section {
        width: 22%;
    }

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

    .page-hero-split {
        min-height: 50vh;
    }

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

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

    .service-detail-image {
        width: 45%;
        height: auto;
    }

    .service-detail-content {
        width: 55%;
        padding: 50px 40px;
    }

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

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

    .expertise-split-layout {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .expertise-item {
        width: calc(50% - 16px);
    }

    .contact-split-layout {
        flex-direction: row;
        gap: 60px;
    }

    .contact-details {
        width: 50%;
    }

    .contact-map {
        width: 50%;
    }

    .directions-split {
        flex-direction: row;
        gap: 30px;
    }

    .direction-card {
        width: calc(33.333% - 20px);
    }

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

    .legal-container {
        padding: 80px 60px;
    }
}

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

    .service-card-split {
        width: calc(50% - 20px);
    }
}
