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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c7ab8;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

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

.nav-menu a {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #1a4d7a 0%, #2c7ab8 100%);
    color: white;
}

.hero-content-left h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image-right {
    flex: 1;
    overflow: hidden;
}

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

.trust-split,
.problem-split,
.process-split,
.testimonial-split,
.form-split,
.urgency-split {
    display: flex;
    align-items: stretch;
}

.trust-split {
    background: var(--bg-white);
}

.trust-image-left,
.problem-image-right,
.process-image-left,
.testimonial-image-right,
.urgency-stats-right {
    flex: 1;
    overflow: hidden;
}

.trust-image-left img,
.problem-image-right img,
.process-image-left img,
.testimonial-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-content-right,
.problem-content-left,
.process-content-right,
.testimonial-content-left,
.urgency-content-left,
.form-content-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content-right h2,
.problem-content-left h2,
.process-content-right h2,
.testimonial-content-left h2,
.urgency-content-left h2,
.form-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.trust-content-right p,
.problem-content-left p,
.process-content-right p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.problem-split {
    background: var(--bg-light);
}

.btn-cta,
.btn-inline,
.btn-sticky,
.btn-submit,
.btn-primary,
.btn-secondary,
.btn-cta-large,
.btn-select-service {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-cta,
.btn-sticky,
.btn-submit,
.btn-primary,
.btn-cta-large {
    background: var(--accent-color);
    color: white;
}

.btn-cta:hover,
.btn-sticky:hover,
.btn-submit:hover,
.btn-primary:hover,
.btn-cta-large:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-inline {
    background: var(--primary-color);
    color: white;
    margin-top: 1rem;
}

.btn-inline:hover {
    background: var(--secondary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-select-service {
    background: var(--primary-color);
    color: white;
    width: 100%;
    margin-top: 1rem;
}

.btn-select-service:hover {
    background: var(--secondary-color);
}

.services-overview {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

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

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

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-content-left {
    background: var(--bg-light);
}

.testimonial-box {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
}

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

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

.process-steps {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step-number {
    background: var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

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

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

.form-split {
    background: var(--bg-white);
}

.form-benefits {
    list-style: none;
    margin-top: 1.5rem;
}

.form-benefits li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.form-container-right {
    flex: 1;
    padding: 4rem 3rem;
    background: var(--bg-light);
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    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: var(--primary-color);
}

.urgency-stats-right {
    background: var(--primary-color);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 1.1rem;
}

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

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: white;
}

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

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

.btn-sticky {
    box-shadow: var(--shadow-lg);
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.page-header-split,
.about-hero-split,
.contact-header-split {
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

.header-content-left,
.about-content-left,
.contact-header-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-color);
    color: white;
}

.header-content-left h1,
.about-content-left h1,
.contact-header-left h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.25rem;
    opacity: 0.95;
}

.header-image-right,
.about-image-right,
.contact-header-right {
    flex: 1;
    overflow: hidden;
}

.header-image-right img,
.about-image-right img,
.contact-header-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.service-detail-split:nth-child(even) {
    background: var(--bg-light);
}

.service-image-left,
.service-image-right {
    flex: 1;
    overflow: hidden;
}

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

.service-detail-right,
.service-detail-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-right h2,
.service-detail-left h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-price-tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-features li {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.comparison-left,
.comparison-right {
    flex: 1;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.comparison-left h3,
.comparison-right h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.comparison-left ul,
.comparison-right ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.cta-banner {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.story-split,
.values-split,
.expertise-split,
.team-split,
.mission-split {
    display: flex;
    align-items: stretch;
}

.story-split,
.expertise-split,
.mission-split {
    background: var(--bg-white);
}

.values-split,
.team-split {
    background: var(--bg-light);
}

.story-image-left,
.values-image-right,
.expertise-image-left,
.team-image-right,
.mission-image-left {
    flex: 1;
    overflow: hidden;
}

.story-image-left img,
.values-image-right img,
.expertise-image-left img,
.team-image-right img,
.mission-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content-right,
.values-content-left,
.expertise-content-right,
.team-content-left,
.mission-content-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content-right h2,
.values-content-left h2,
.expertise-content-right h2,
.team-content-left h2,
.mission-content-right h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-item {
    margin-bottom: 2rem;
}

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

.team-list {
    margin-top: 1.5rem;
    list-style: none;
}

.team-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.team-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.numbers-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.numbers-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.number-card {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.big-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-info-split,
.contact-reasons-split,
.response-time-split,
.faq-split {
    display: flex;
    align-items: stretch;
}

.contact-info-split,
.response-time-split {
    background: var(--bg-white);
}

.contact-reasons-split,
.faq-split {
    background: var(--bg-light);
}

.contact-details-left,
.reasons-content-right,
.response-content-left,
.faq-content-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map-right,
.reasons-image-left,
.response-image-right,
.faq-image-left {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.contact-map-right img,
.reasons-image-left img,
.response-image-right img,
.faq-image-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.map-caption {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
}

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

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.method-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.reasons-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.reasons-list li {
    margin-bottom: 0.75rem;
}

.response-guarantee {
    margin-top: 2rem;
}

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

.response-time {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.visit-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

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

.visit-right h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-header {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.legal-date {
    opacity: 0.9;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.legal-text h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.legal-text h4 {
    color: var(--text-dark);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-text ul,
.legal-text ol {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

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

.thanks-hero {
    background: linear-gradient(135deg, var(--success-color) 0%, #229954 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

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

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

.thanks-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    opacity: 0.95;
}

.selected-service-info {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1.1rem;
}

.next-steps-split {
    display: flex;
    align-items: stretch;
    background: var(--bg-white);
}

.next-steps-left {
    flex: 1;
    padding: 4rem 3rem;
}

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

.next-steps-right {
    flex: 1;
    overflow: hidden;
}

.next-steps-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-step {
    display: flex;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.timeline-step:last-child {
    border-bottom: none;
}

.step-marker {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.step-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-time {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.email-check-section {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.email-check-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.email-check-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.important-note {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    text-align: left;
}

.emergency-split {
    display: flex;
    align-items: stretch;
    background: var(--bg-white);
}

.emergency-image-left {
    flex: 1;
    overflow: hidden;
}

.emergency-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.emergency-content-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.emergency-content-right h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.emergency-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin: 1.5rem 0;
}

.emergency-note {
    font-weight: 600;
    color: var(--text-dark);
}

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

.meanwhile-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.meanwhile-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.meanwhile-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.meanwhile-card .btn-secondary {
    margin-top: 1rem;
}

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

.reassurance-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.reassurance-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.reassurance-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.stat-item {
    flex: 1 1 250px;
    max-width: 300px;
}

.stat-item .stat-number {
    font-size: 3.5rem;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero-split,
    .trust-split,
    .problem-split,
    .process-split,
    .testimonial-split,
    .form-split,
    .urgency-split,
    .page-header-split,
    .about-hero-split,
    .contact-header-split,
    .service-detail-split,
    .comparison-split,
    .story-split,
    .values-split,
    .expertise-split,
    .team-split,
    .mission-split,
    .contact-info-split,
    .contact-reasons-split,
    .response-time-split,
    .faq-split,
    .next-steps-split,
    .emergency-split,
    .visit-split {
        flex-direction: column;
    }

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

    .trust-content-right h2,
    .problem-content-left h2,
    .process-content-right h2,
    .section-header-center h2 {
        font-size: 1.75rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .btn-sticky {
        width: 100%;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .services-grid,
    .numbers-grid {
        flex-direction: column;
    }
}
