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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

ul {
    list-style-position: inside;
}

.split-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-left {
    margin-bottom: 1rem;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #d35400;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.nav-right a {
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-right a:hover,
.nav-right a.active {
    color: #d35400;
}

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

.hero-content-left {
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-left h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual-right {
    width: 100%;
    overflow: hidden;
}

.hero-visual-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #d35400;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #d35400;
    font-weight: 600;
    border: 2px solid #d35400;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-secondary:hover {
    background-color: #d35400;
    color: #ffffff;
}

.cta-large {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background-color: #d35400;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background-color: #b8450b;
    transform: scale(1.05);
}

.intro-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
}

.intro-visual-left {
    margin-bottom: 2rem;
}

.intro-visual-left img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.intro-content-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-content-right p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

.value-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #d35400;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.services-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.services-content-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-content-left p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.services-list-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #d35400;
    border-radius: 4px;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.service-item p {
    color: #555;
    margin-bottom: 1rem;
}

.service-item .price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d35400;
    margin-top: 1rem;
}

.testimonial-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonial-visual-left {
    margin-bottom: 2rem;
}

.testimonial-visual-left img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.testimonial-content-right blockquote {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.testimonial-content-right blockquote p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-content-right cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
    color: #f39c12;
}

.process-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

.process-content-left h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #d35400;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    color: #555;
    line-height: 1.7;
}

.process-visual-right {
    margin-top: 2rem;
}

.process-visual-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.form-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.form-intro-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-intro-left p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
    padding: 0;
}

.form-benefits li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #555;
}

.form-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d35400;
    font-weight: 700;
}

.form-container-right {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    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: #d35400;
}

.cta-submit {
    width: 100%;
    padding: 1.125rem;
    background-color: #d35400;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-submit:hover {
    background-color: #b8450b;
}

.cta-banner-split {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #d35400 0%, #b8450b 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-content .cta-large {
    background-color: #ffffff;
    color: #d35400;
}

.cta-content .cta-large:hover {
    background-color: #f8f9fa;
    color: #b8450b;
}

.footer-split {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

.footer-left h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #d35400;
}

.footer-left p {
    color: #bbb;
}

.footer-center h4,
.footer-right h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-center a,
.footer-right a {
    display: block;
    margin-bottom: 0.5rem;
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-center a:hover,
.footer-right a:hover {
    color: #d35400;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.cookie-accept {
    background-color: #d35400;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #b8450b;
}

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

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

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

.story-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.story-visual-left {
    margin-bottom: 2rem;
}

.story-visual-left img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.story-content-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-content-right p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.milestones-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

.milestones-content-left h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.milestone {
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.milestone .year {
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d35400;
}

.milestone p {
    color: #555;
    line-height: 1.7;
}

.milestones-visual-right {
    margin-top: 2rem;
}

.milestones-visual-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.values-detailed {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.values-detailed h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    text-align: center;
}

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

.value-detailed {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-detailed h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d35400;
}

.value-detailed p {
    color: #555;
    line-height: 1.7;
}

.team-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

.team-visual-left {
    margin-bottom: 2rem;
}

.team-visual-left img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.team-content-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-content-right p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.certifications-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.certifications-content-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cert-list {
    list-style: none;
    padding: 0;
}

.cert-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    border-bottom: 1px solid #e8e8e8;
}

.cert-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d35400;
    font-weight: 700;
    font-size: 1.25rem;
}

.certifications-visual-right {
    margin-top: 2rem;
}

.certifications-visual-right img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.service-info-left h2,
.service-info-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-info-left p,
.service-info-right p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.service-info-left h3,
.service-info-right h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info-left ul,
.service-info-right ul {
    list-style: none;
    padding: 0;
}

.service-info-left ul li,
.service-info-right ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #555;
}

.service-info-left ul li::before,
.service-info-right ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d35400;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #fff8f0;
    border-left: 4px solid #d35400;
    color: #555;
    font-style: italic;
}

.price-box {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d35400;
    margin-bottom: 0.5rem;
}

.price-unit {
    display: block;
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 1.5rem;
}

.service-visual-left,
.service-price-right {
    margin-top: 2rem;
}

.service-visual-left img,
.service-price-right img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.guarantee-section {
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

.guarantee-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    text-align: center;
}

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

.guarantee-item {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.guarantee-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #d35400;
}

.guarantee-item p {
    color: #555;
    line-height: 1.7;
}

.contact-info-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.contact-details-left h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #d35400;
}

.contact-block p {
    color: #555;
    line-height: 1.7;
}

.contact-block a {
    color: #d35400;
    text-decoration: underline;
}

.contact-map-right {
    margin-top: 2rem;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-process-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

.process-visual-left {
    margin-bottom: 2rem;
}

.process-visual-left img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.process-content-right h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

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

.step-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d35400;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff8f0;
    border-radius: 50%;
}

.step-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-text p {
    color: #555;
    line-height: 1.7;
}

.faq-section {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    text-align: center;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #d35400;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    padding: 4rem 1.5rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: #d35400;
    color: #ffffff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-main {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 3rem;
}

.next-step {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-time {
    display: block;
    font-weight: 700;
    color: #d35400;
    margin-bottom: 0.5rem;
}

.next-step p {
    color: #555;
    line-height: 1.7;
}

.thanks-service-reminder {
    padding: 1.5rem;
    background-color: #fff8f0;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.thanks-contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
}

.thanks-contact-info p {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.legal-page h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.legal-page h4 {
    font-size: 1.15rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-page p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
}

.legal-page li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #d35400;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #b8450b;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e8e8e8;
    font-size: 0.95rem;
    color: #777;
}

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

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 2px solid #d35400;
}

.cookie-table td {
    padding: 1rem;
    color: #555;
    border-bottom: 1px solid #e8e8e8;
}

@media (min-width: 768px) {
    .split-nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 1.5rem 3rem;
    }

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

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

    .hero-content-left {
        flex: 1;
        padding: 4rem 3rem;
    }

    .hero-visual-right {
        flex: 1;
    }

    .hero-visual-right img {
        height: 100%;
        min-height: 80vh;
    }

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

    .intro-split {
        flex-direction: row;
        gap: 3rem;
        padding: 6rem 3rem;
    }

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

    .intro-visual-left {
        flex: 1;
        margin-bottom: 0;
    }

    .intro-visual-left img {
        height: 100%;
        min-height: 400px;
    }

    .intro-content-right {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        padding: 6rem 3rem;
    }

    .services-split {
        flex-direction: row;
        gap: 4rem;
        padding: 6rem 3rem;
    }

    .services-content-left {
        flex: 1;
    }

    .services-list-right {
        flex: 1;
        margin-top: 0;
    }

    .testimonial-split {
        flex-direction: row;
        gap: 3rem;
        padding: 6rem 3rem;
    }

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

    .testimonial-visual-left {
        flex: 1;
        margin-bottom: 0;
    }

    .testimonial-visual-left img {
        height: 100%;
        min-height: 400px;
    }

    .testimonial-content-right {
        flex: 1;
    }

    .process-split {
        flex-direction: row;
        gap: 4rem;
        padding: 6rem 3rem;
    }

    .process-content-left {
        flex: 1;
    }

    .process-visual-right {
        flex: 1;
        margin-top: 0;
    }

    .process-visual-right img {
        height: 100%;
        min-height: 500px;
    }

    .form-split {
        flex-direction: row;
        gap: 4rem;
        padding: 6rem 3rem;
    }

    .form-intro-left {
        flex: 1;
    }

    .form-container-right {
        flex: 1;
        margin-top: 0;
    }

    .cta-banner-split {
        padding: 6rem 3rem;
    }

    .footer-split {
        flex-direction: row;
        justify-content: space-between;
        padding: 4rem 3rem;
    }

    .story-split {
        flex-direction: row;
        gap: 3rem;
        padding: 6rem 3rem;
    }

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

    .story-visual-left {
        flex: 1;
        margin-bottom: 0;
    }

    .story-visual-left img {
        height: 100%;
        min-height: 400px;
    }

    .story-content-right {
        flex: 1;
    }

    .milestones-split {
        flex-direction: row;
        gap: 4rem;
        padding: 6rem 3rem;
    }

    .milestones-content-left {
        flex: 1.2;
    }

    .milestones-visual-right {
        flex: 0.8;
        margin-top: 0;
    }

    .milestones-visual-right img {
        height: 100%;
        min-height: 600px;
    }

    .values-detailed {
        padding: 6rem 3rem;
    }

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

    .team-split {
        flex-direction: row;
        gap: 3rem;
        padding: 6rem 3rem;
    }

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

    .team-visual-left {
        flex: 1;
        margin-bottom: 0;
    }

    .team-visual-left img {
        height: 100%;
        min-height: 400px;
    }

    .team-content-right {
        flex: 1;
    }

    .certifications-split {
        flex-direction: row;
        gap: 3rem;
        padding: 6rem 3rem;
    }

    .certifications-content-left {
        flex: 1;
    }

    .certifications-visual-right {
        flex: 1;
        margin-top: 0;
    }

    .certifications-visual-right img {
        height: 100%;
        min-height: 400px;
    }

    .service-detail-split {
        flex-direction: row;
        gap: 3rem;
        padding: 6rem 3rem;
    }

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

    .service-info-left,
    .service-info-right {
        flex: 1.3;
    }

    .service-visual-left,
    .service-price-right {
        flex: 0.7;
        margin-top: 0;
    }

    .service-visual-left img,
    .service-price-right img {
        height: 400px;
    }

    .guarantee-section {
        padding: 6rem 3rem;
    }

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

    .contact-info-split {
        flex-direction: row;
        gap: 4rem;
        padding: 6rem 3rem;
    }

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

    .contact-map-right {
        flex: 1;
        margin-top: 0;
    }

    .map-placeholder {
        height: 600px;
    }

    .contact-process-split {
        flex-direction: row;
        gap: 3rem;
        padding: 6rem 3rem;
    }

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

    .process-visual-left {
        flex: 1;
        margin-bottom: 0;
    }

    .process-visual-left img {
        height: 100%;
        min-height: 400px;
    }

    .process-content-right {
        flex: 1;
    }

    .faq-section {
        padding: 6rem 3rem;
    }

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

    .legal-page {
        padding: 6rem 3rem;
    }

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

    .cookie-content p {
        text-align: left;
        flex: 1;
        margin-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-content-left {
        padding: 6rem;
    }

    .hero-content-left h1 {
        font-size: 3.5rem;
    }
}