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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-alt: #f3f4f6;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --accent-warm: #f59e0b;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

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

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

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

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

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    min-height: 600px;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);
}

.split-reverse,
.split-standard {
    display: flex;
    min-height: 500px;
}

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

.split-content,
.split-visual {
    flex: 1;
}

.split-content {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.split-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

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

.alt-bg {
    background-color: var(--bg-light);
}

.services-grid {
    padding: 6rem 3rem;
    background-color: var(--bg-alt);
}

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

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 1.5rem 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 1.5rem;
}

.btn-select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonial-split {
    display: flex;
    min-height: 500px;
    background-color: var(--bg-light);
}

.testimonial-visual {
    flex: 1;
}

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

.testimonial-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

blockquote p {
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    color: var(--text-light);
    font-weight: 500;
}

.inline-cta {
    margin-top: 1.5rem;
}

.link-cta {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
}

.cta-section {
    padding: 6rem 3rem;
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

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

.cta-large {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1.125rem 3rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
}

.form-section {
    padding: 6rem 3rem;
    background-color: var(--bg-light);
}

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

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.form-container {
    flex: 1;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

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

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

.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 ease, box-shadow 0.3s ease;
}

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

.btn-submit {
    padding: 1rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

.final-trust {
    padding: 5rem 3rem;
    background-color: var(--white);
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

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

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

.footer-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

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

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

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.sticky-btn {
    display: block;
    background-color: var(--accent-warm);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-xl);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sticky-btn:hover {
    background-color: #d97706;
    transform: scale(1.05);
    color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 2000;
    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;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background-color: var(--secondary-color);
    color: var(--white);
}

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

.btn-cookie:hover {
    background-color: #059669;
}

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

.page-hero {
    padding: 6rem 3rem 4rem;
    background-color: var(--bg-alt);
    text-align: center;
}

.hero-content-centered {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content-centered h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

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

.content-block {
    padding: 5rem 3rem;
}

.content-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.content-narrow p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

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

.principle-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.principle-item p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
}

.services-detail {
    padding: 4rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-item {
    display: flex;
    margin-bottom: 5rem;
    gap: 4rem;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.service-detail-visual {
    flex: 1;
    max-width: 550px;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

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

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
    gap: 4rem;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.info-block p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
}

.info-block a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-color: var(--bg-alt);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.visit-info {
    padding: 4rem 3rem;
}

.checklist {
    list-style: none;
    margin: 1.5rem 0;
}

.checklist li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.faq-section {
    padding: 4rem 3rem;
    background-color: var(--bg-alt);
}

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

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

.legal-page {
    padding: 4rem 3rem 6rem;
    background-color: var(--white);
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

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

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

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

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

.cookie-table th {
    background-color: var(--bg-alt);
    font-weight: 600;
}

.cookie-table td {
    color: var(--text-light);
}

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

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-selected {
    background-color: var(--bg-light);
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: none;
}

.service-selected p {
    margin: 0;
    font-size: 1.05rem;
}

.next-steps {
    margin: 2.5rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.next-steps li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

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

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

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

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

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

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

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-split,
    .split-reverse,
    .split-standard,
    .testimonial-split,
    .form-split,
    .service-detail-item,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content {
        padding: 3rem 2rem;
    }

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

    .split-content {
        padding: 3rem 2rem;
    }

    .split-content h2 {
        font-size: 2rem;
    }

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

    .testimonial-content {
        padding: 3rem 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .service-detail-visual {
        max-width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 1rem 1.25rem;
    }

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

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

    .cta-container h2 {
        font-size: 2rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .legal-content h1 {
        font-size: 2.25rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }
}