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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-color: #f59e0b;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

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

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    padding: 3rem 5%;
    background-color: var(--bg-light);
}

.split-right {
    padding: 3rem 5%;
}

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

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

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: var(--primary-dark);
}

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

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

.intro-alternate {
    display: flex;
    min-height: 70vh;
}

.intro-text {
    max-width: 600px;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

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

.problem-section {
    display: flex;
    min-height: 80vh;
    background-color: var(--bg-light);
}

.problem-content {
    max-width: 550px;
}

.problem-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

.service-preview {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header-centered p {
    font-size: 1.125rem;
    color: var(--text-medium);
}

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

.service-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-visual {
    flex: 1;
}

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

.service-info {
    flex: 1;
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-info p {
    font-size: 1.063rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

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

.select-service {
    padding: 0.875rem 1.75rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: var(--primary-dark);
}

.process-split {
    display: flex;
    min-height: 80vh;
}

.process-content {
    max-width: 600px;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.step p {
    font-size: 1.063rem;
    color: var(--text-medium);
}

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

.testimonials-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

.testimonials-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 1.063rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-author strong {
    font-size: 1.063rem;
    color: var(--text-dark);
}

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

.why-us-split {
    display: flex;
    min-height: 70vh;
}

.why-content {
    max-width: 550px;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.benefits-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.benefits-list li {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    list-style: disc;
}

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

.cta-form-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

.form-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-container > p {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

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

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

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

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

.cta-submit {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-submit:hover {
    background-color: var(--primary-dark);
}

.site-footer {
    padding: 3rem 5%;
    background-color: var(--text-dark);
    color: var(--bg-light);
}

.footer-content {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-column p {
    font-size: 0.938rem;
    color: var(--bg-light);
}

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

.footer-column ul li a {
    font-size: 0.938rem;
    color: var(--bg-light);
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--bg-light);
}

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

.sticky-cta a {
    display: inline-block;
    padding: 1rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 5%;
    z-index: 1001;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.938rem;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

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

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

.about-hero-split,
.services-hero-split,
.contact-hero-split {
    display: flex;
    min-height: 70vh;
}

.about-hero-content,
.services-hero-content,
.contact-hero-content {
    max-width: 550px;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-hero-content p,
.services-hero-content p,
.contact-hero-content p {
    font-size: 1.25rem;
    color: var(--text-medium);
}

.about-hero-visual img,
.services-hero-visual img,
.contact-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.story-section {
    display: flex;
    min-height: 70vh;
}

.story-content {
    max-width: 600px;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

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

.values-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

.values-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

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

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

.team-split,
.approach-section {
    display: flex;
    min-height: 70vh;
}

.team-content,
.approach-content {
    max-width: 600px;
}

.team-content h2,
.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.team-content p,
.approach-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

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

.stats-section {
    padding: 5rem 5%;
    background-color: var(--primary-color);
}

.stats-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-about-section,
.cta-services-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.cta-about-content,
.cta-services-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-about-content h2,
.cta-services-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-about-content p,
.cta-services-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.cta-buttons-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.detailed-services {
    padding: 3rem 5%;
}

.service-detail-split {
    display: flex;
    min-height: 70vh;
    margin-bottom: 4rem;
}

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

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.service-detail-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.service-includes {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-includes li {
    font-size: 1.063rem;
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    list-style: disc;
}

.service-pricing-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.faq-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

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

.faq-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

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

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.contact-info-section {
    padding: 3rem 5%;
}

.contact-columns {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-col {
    flex: 1;
}

.contact-col h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.info-block p {
    font-size: 1.063rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.visit-section {
    display: flex;
    min-height: 60vh;
    background-color: var(--bg-light);
}

.visit-content {
    max-width: 600px;
}

.visit-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.visit-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

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

.working-hours-section {
    padding: 4rem 5%;
}

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

.working-hours-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.working-hours-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.location-details-split {
    display: flex;
    min-height: 60vh;
    background-color: var(--bg-light);
}

.location-content {
    max-width: 600px;
}

.location-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.location-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
}

.transport-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.transport-list li {
    font-size: 1.063rem;
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    list-style: disc;
}

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

.contact-cta-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

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

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-cta-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 5rem 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.service-info-box {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 3rem;
}

.service-info-box p {
    font-size: 1.125rem;
    color: var(--text-medium);
}

.thanks-details {
    margin-bottom: 3rem;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

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

.step-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-text p {
    font-size: 1.063rem;
    color: var(--text-medium);
}

.thanks-cta {
    margin-top: 3rem;
}

.thanks-cta p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.legal-page {
    padding: 5rem 5%;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.last-updated {
    font-size: 0.938rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-container h3 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 1.063rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-container ul,
.legal-container ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-container ul li,
.legal-container ol li {
    font-size: 1.063rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    list-style: disc;
}

.legal-container ol li {
    list-style: decimal;
}

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

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

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

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

.cookies-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 2rem 5%;
        border-bottom: 1px solid var(--border-color);
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-alternate,
    .problem-section,
    .process-split,
    .about-hero-split,
    .services-hero-split,
    .contact-hero-split,
    .story-section,
    .team-split,
    .approach-section,
    .why-us-split,
    .visit-section,
    .location-details-split,
    .service-detail-split {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        min-height: auto;
    }

    .hero-content h1,
    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .intro-text h2,
    .problem-content h2,
    .process-content h2,
    .story-content h2,
    .team-content h2,
    .approach-content h2,
    .why-content h2,
    .visit-content h2,
    .location-content h2 {
        font-size: 1.75rem;
    }

    .section-header-centered h2,
    .testimonials-header h2,
    .values-header h2,
    .faq-header h2 {
        font-size: 2rem;
    }

    .testimonials-grid,
    .values-grid,
    .stats-container,
    .footer-content,
    .contact-columns {
        flex-direction: column;
    }

    .services-grid {
        gap: 2rem;
    }

    .service-card {
        flex-direction: column;
        gap: 0;
    }

    .service-visual img {
        height: 200px;
    }

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

    .cta-buttons-group {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}