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

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

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #2c2c2c;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6b4f4f;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #ffffff;
}

.hero-text {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f5f1ed;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    background-color: #e8e4df;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #6b4f4f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #523d3d;
}

.philosophy-split {
    display: flex;
    background-color: #ffffff;
}

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

.split-image {
    flex: 1;
    background-color: #e8e4df;
}

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

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

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

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.link-inline {
    color: #6b4f4f;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #6b4f4f;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.link-inline:hover {
    opacity: 0.7;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

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

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c2c2c;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #7a7a7a;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 400px;
    background-color: #ffffff;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    width: 100%;
    height: 280px;
    background-color: #e8e4df;
}

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #2c2c2c;
}

.service-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6a6a6a;
    margin-bottom: 1.2rem;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6b4f4f;
}

.approach-split {
    display: flex;
    background-color: #ffffff;
}

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

.testimonials-inline {
    padding: 5rem 2rem;
    background-color: #f5f1ed;
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
}

.testimonial p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #3a3a3a;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 1rem;
    color: #7a7a7a;
    font-style: normal;
}

.order-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 1.2rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.form-container {
    flex: 1;
    background-color: #fafafa;
    padding: 3rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6b4f4f;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #6b4f4f;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #523d3d;
}

.footer {
    background-color: #2c2c2c;
    color: #c0c0c0;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-col p {
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-cookie:hover {
    opacity: 0.85;
}

.btn-cookie:not(.secondary) {
    background-color: #6b4f4f;
    color: #ffffff;
}

.btn-cookie.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.page-header-split {
    display: flex;
    min-height: 60vh;
    background-color: #ffffff;
}

.header-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f5f1ed;
}

.header-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c2c2c;
}

.header-content p {
    font-size: 1.2rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.header-image {
    flex: 1;
    background-color: #e8e4df;
}

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

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

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

.values-split {
    display: flex;
    background-color: #fafafa;
    padding: 4rem 0;
}

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

.approach-detail {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.detail-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #2c2c2c;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.approach-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 350px;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #6b4f4f;
}

.approach-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.team-split {
    display: flex;
    background-color: #ffffff;
    padding: 4rem 0;
}

.mission-statement {
    padding: 5rem 2rem;
    background-color: #f5f1ed;
}

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

.statement-content h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #2c2c2c;
}

.statement-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.services-header {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f5f1ed;
}

.services-header h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c2c2c;
}

.services-header p {
    font-size: 1.1rem;
    color: #6a6a6a;
}

.service-detail-split {
    display: flex;
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.service-detail-split:nth-child(odd) {
    background-color: #fafafa;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #6b4f4f;
    margin: 1.5rem 0;
}

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

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #5a5a5a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6b4f4f;
    font-weight: bold;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: transparent;
    color: #6b4f4f;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #6b4f4f;
    transition: all 0.3s ease;
}

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

.pricing-notes {
    padding: 4rem 2rem;
    background-color: #f5f1ed;
}

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

.notes-container h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.notes-container p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 1rem;
}

.contact-header {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f5f1ed;
}

.contact-header h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c2c2c;
}

.contact-header p {
    font-size: 1.1rem;
    color: #6a6a6a;
}

.contact-split {
    display: flex;
    background-color: #ffffff;
}

.contact-info {
    flex: 1;
    padding: 5rem 4rem;
}

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

.info-block h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c2c2c;
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
    margin-top: 0.8rem;
}

.contact-image {
    flex: 1;
    background-color: #e8e4df;
}

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

.visit-details {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

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

.details-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.details-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 1.2rem;
}

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

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

.faq-container h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
    color: #6b4f4f;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.thanks-container {
    display: flex;
    min-height: 80vh;
    background-color: #ffffff;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #f5f1ed;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #6b4f4f;
    font-weight: 600;
}

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

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c2c2c;
}

.steps-list {
    padding-left: 1.5rem;
}

.steps-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 0.8rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #6b4f4f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #523d3d;
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #6b4f4f;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #6b4f4f;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #6b4f4f;
    color: #ffffff;
}

.contact-reminder {
    font-size: 0.95rem;
    color: #888;
}

.thanks-visual {
    flex: 1;
    background-color: #e8e4df;
}

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

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.last-updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c2c2c;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    font-weight: 600;
    color: #6b4f4f;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #6b4f4f;
    text-decoration: underline;
}

.legal-section a:hover {
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .hero-split,
    .philosophy-split,
    .approach-split,
    .form-split,
    .page-header-split,
    .story-split,
    .values-split,
    .team-split,
    .service-detail-split,
    .contact-split,
    .thanks-container {
        flex-direction: column;
    }

    .philosophy-split.reverse,
    .approach-split.reverse,
    .story-split.reverse,
    .values-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-text,
    .split-content,
    .form-intro,
    .form-container,
    .header-content,
    .contact-info,
    .thanks-content {
        padding: 3rem 2rem;
    }

    .hero-image,
    .split-image,
    .header-image,
    .contact-image,
    .thanks-visual {
        min-height: 400px;
    }

    .service-card {
        min-width: 100%;
    }

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

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

    .footer-col {
        flex: 1 1 calc(50% - 1rem);
        min-width: 200px;
    }

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

    .approach-grid {
        gap: 2rem;
    }

    .approach-item {
        flex: 1 1 100%;
        min-width: 100%;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-text h1,
    .header-content h1,
    .services-header h1,
    .contact-header h1 {
        font-size: 2.5rem;
    }

    .split-content h2,
    .detail-container h2,
    .statement-content h2 {
        font-size: 2rem;
    }

    .service-card {
        min-width: 100%;
    }
}