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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --accent-color: #16a085;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

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

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

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

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

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

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

.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

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

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

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

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

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

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

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

.hero-content {
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.cta-secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
}

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

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

.intro-visual {
    min-height: 300px;
    overflow: hidden;
}

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

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

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

.intro-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 1rem;
}

.services-preview {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.service-card-split {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.service-visual {
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-split:hover .service-visual img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.form-section-split {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
}

.form-content {
    padding: 3rem 1.5rem;
}

.form-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.btn-submit {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.form-visual {
    min-height: 400px;
    overflow: hidden;
}

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

.trust-section {
    padding: 4rem 1.5rem;
    background: var(--bg-white);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

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

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

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

.final-cta-split {
    display: flex;
    flex-direction: column;
    background: var(--primary-color);
}

.final-cta-content {
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.final-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.final-cta-visual {
    min-height: 300px;
    overflow: hidden;
}

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

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

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

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: var(--bg-white);
}

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta-btn {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.sticky-cta-btn:hover {
    background: #138d75;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-hero-split {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
}

.page-hero-content {
    padding: 3rem 1.5rem;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.page-hero-visual {
    min-height: 250px;
    overflow: hidden;
}

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

.story-split {
    display: flex;
    flex-direction: column;
    padding: 3rem 1.5rem;
}

.story-visual {
    min-height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

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

.story-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

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

.value-card-split {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.value-icon {
    overflow: hidden;
    border-radius: 8px;
}

.value-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

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

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

.team-split {
    display: flex;
    flex-direction: column;
    padding: 3rem 1.5rem;
}

.team-content {
    margin-bottom: 2rem;
}

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

.team-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.team-visual {
    overflow: hidden;
    border-radius: 8px;
}

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

.process-section {
    padding: 4rem 1.5rem;
    background: var(--bg-light);
}

.process-steps-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step-split {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 80px;
}

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

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about {
    padding: 4rem 1.5rem;
    background: var(--primary-color);
    text-align: center;
}

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

.cta-about-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
}

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

.service-detail-visual {
    overflow: hidden;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.service-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

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

.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row .price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.pricing-notes {
    padding: 3rem 1.5rem;
    background: var(--bg-light);
}

.notes-container {
    max-width: 1200px;
    margin: 0 auto;
}

.notes-container h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.note-block {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.note-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.note-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-services {
    padding: 4rem 1.5rem;
    background: var(--primary-color);
    text-align: center;
}

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

.cta-services-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

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

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

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

.contact-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-block a {
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

.directions-section {
    padding: 3rem 1.5rem;
    background: var(--bg-light);
}

.directions-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.direction-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.direction-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.faq-contact {
    padding: 3rem 1.5rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

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

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

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

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

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

.thanks-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.selected-service {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

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

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.contact-reminder {
    margin-top: 2rem;
    color: var(--text-light);
}

.contact-reminder a {
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-page {
    padding: 3rem 1.5rem;
    background: var(--bg-white);
}

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

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

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

.legal-container h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-dark);
}

.legal-container h4 {
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
    color: var(--text-dark);
}

.legal-container p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-container ul,
.legal-container ol {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

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

.btn-reset-cookies {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    margin: 1rem 0;
    transition: var(--transition);
}

.btn-reset-cookies:hover {
    background: #d35400;
}

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

    .hamburger {
        display: none;
    }

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

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

    .hero-visual {
        flex: 1;
    }

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

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

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

    .intro-visual {
        flex: 1;
    }

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

    .services-grid-split {
        gap: 3rem;
    }

    .service-card-split {
        flex-direction: row;
        min-height: 300px;
    }

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

    .service-visual {
        flex: 0 0 45%;
    }

    .service-info {
        flex: 1;
    }

    .form-section-split {
        flex-direction: row;
    }

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

    .form-visual {
        flex: 1;
    }

    .testimonials-split {
        flex-direction: row;
        gap: 2rem;
    }

    .testimonial-card {
        flex: 1;
    }

    .final-cta-split {
        flex-direction: row;
    }

    .final-cta-content {
        flex: 1;
    }

    .final-cta-visual {
        flex: 1;
    }

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

    .footer-column {
        flex: 1;
    }

    .sticky-cta {
        display: block;
    }

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

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

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

    .story-split {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
    }

    .story-visual {
        flex: 0 0 45%;
        margin-bottom: 0;
    }

    .story-content {
        flex: 1;
    }

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

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

    .value-icon {
        flex: 0 0 40%;
    }

    .value-text {
        flex: 1;
    }

    .team-split {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
    }

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

    .team-visual {
        flex: 0 0 45%;
    }

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

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

    .service-detail-visual {
        flex: 0 0 45%;
    }

    .service-detail-content {
        flex: 1;
    }

    .notes-content-split {
        flex-direction: row;
    }

    .note-block {
        flex: 1;
    }

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

    .contact-details {
        flex: 1;
    }

    .contact-map {
        flex: 1;
    }

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

    .direction-card {
        flex: 1;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

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

    .step-item {
        flex: 1;
    }

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

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

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

    .section-header-center h2 {
        font-size: 2.5rem;
    }

    .services-preview,
    .trust-section,
    .values-section,
    .process-section,
    .cta-about,
    .pricing-notes,
    .cta-services,
    .faq-contact {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}