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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-medium {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
}

.ad-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

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

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

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

.hero-text-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.hero-content h2 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #4a4a4a;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1a1a1a;
    opacity: 1;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid #2c2c2c;
    color: #2c2c2c;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
    opacity: 1;
}

.intro-narrative {
    padding: 100px 0;
    background-color: #f8f7f5;
}

.lead-text {
    font-size: 26px;
    line-height: 1.6;
    font-weight: 400;
    color: #3a3a3a;
}

.services-grid-modern {
    padding: 120px 0;
}

.section-intro-offset {
    margin-bottom: 70px;
    max-width: 600px;
}

.section-intro-offset h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-intro-offset p {
    font-size: 18px;
    color: #5a5a5a;
    line-height: 1.7;
}

.services-dual-column {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.service-card-large {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 25px;
}

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

.service-details h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
}

.services-three-column {
    display: flex;
    gap: 30px;
}

.service-card-compact {
    flex: 1;
}

.service-image-small {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.service-card-compact h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card-compact p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.about-preview-split {
    display: flex;
    min-height: 500px;
}

.about-text-block {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f7f5;
}

.about-text-block h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.about-text-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.link-arrow {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    color: #2c2c2c;
    margin-top: 15px;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
    opacity: 1;
}

.link-arrow::after {
    content: ' →';
}

.about-image-block {
    flex: 1;
    overflow: hidden;
}

.about-image-block img {
    width: 100%;
    height: 100%;
}

.cta-section-centered {
    padding: 100px 0;
    text-align: center;
    background-color: #f8f7f5;
}

.cta-section-centered h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section-centered p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 35px;
}

.form-section-offset {
    padding: 100px 0;
}

.form-header {
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 17px;
    color: #5a5a5a;
}

.contact-form {
    background-color: #f8f7f5;
    padding: 50px;
    border-radius: 8px;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-group {
    margin-bottom: 30px;
    flex: 1;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 16px 50px;
    background-color: #2c2c2c;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1a1a1a;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 70px 0 40px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #b0b0b0;
}

.footer-bottom {
    border-top: 1px solid #4a4a4a;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #888;
    max-width: 900px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px;
    z-index: 1000;
    display: none;
}

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background-color: #ffffff;
    color: #2c2c2c;
}

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

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

.page-header-minimal {
    padding: 80px 0 60px;
    text-align: center;
    background-color: #f8f7f5;
}

.page-header-minimal h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 20px;
    color: #5a5a5a;
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.price-display {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
}

.service-detail-image {
    flex: 1;
    height: 450px;
    overflow: hidden;
}

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

.page-header-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.header-image-bg {
    width: 100%;
    height: 100%;
}

.header-image-bg img {
    width: 100%;
    height: 100%;
}

.header-overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
}

.header-overlay-text h1 {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
}

.about-narrative {
    padding: 80px 0;
}

.about-narrative h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.about-narrative p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #4a4a4a;
}

.about-philosophy-split {
    display: flex;
    min-height: 500px;
}

.philosophy-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-text h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
}

.philosophy-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.philosophy-image {
    flex: 1;
    overflow: hidden;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
}

.process-section {
    padding: 80px 0;
    background-color: #f8f7f5;
}

.process-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.process-step {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
}

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.values-section {
    padding: 80px 0;
}

.values-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 17px;
    line-height: 1.8;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #4a4a4a;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li::before {
    content: '✓';
    font-weight: 700;
    margin-right: 15px;
    color: #2c2c2c;
}

.team-section {
    padding: 80px 0;
    background-color: #f8f7f5;
}

.team-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

.team-intro {
    font-size: 20px;
    color: #5a5a5a;
    margin-bottom: 30px;
}

.team-description p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: #888;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c2c2c;
}

.note {
    font-size: 14px;
    color: #5a5a5a;
    margin-top: 10px;
}

.contact-map-placeholder {
    flex: 1;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 8px;
}

.contact-map-placeholder p {
    font-size: 18px;
    color: #5a5a5a;
    text-align: center;
}

.directions-section {
    padding: 60px 0;
    background-color: #f8f7f5;
}

.directions-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.directions-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.what-to-bring-section {
    padding: 80px 0;
}

.what-to-bring-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.preparation-grid {
    display: flex;
    gap: 40px;
}

.prep-item {
    flex: 1;
}

.prep-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.prep-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.faq-contact {
    padding: 80px 0;
    background-color: #f8f7f5;
}

.faq-contact h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.thanks-page {
    padding: 120px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: #5a5a5a;
    margin-bottom: 30px;
}

.service-confirmation {
    margin: 30px 0;
}

.service-selected {
    font-size: 18px;
    padding: 20px 30px;
    background-color: #f8f7f5;
    border-radius: 6px;
    display: inline-block;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.legal-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.legal-page a {
    color: #2c2c2c;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .services-dual-column {
        flex-direction: column;
    }

    .services-three-column {
        flex-direction: column;
    }

    .about-preview-split,
    .about-philosophy-split {
        flex-direction: column;
    }

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

    .contact-grid {
        flex-direction: column;
    }

    .preparation-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .container-wide,
    .container-medium,
    .container-narrow {
        padding: 0 25px;
    }

    .header-split {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-header-minimal h1 {
        font-size: 40px;
    }

    .header-overlay-text h1 {
        font-size: 42px;
    }

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