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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f4f1ea;
    color: #5a5a5a;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    border-bottom: 1px solid #e0ddd5;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5f2d;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c5f2d;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f6f3;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: normal;
}

.hero-content p {
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background-color: #e5e0d8;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #234a24;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5f2d;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid #2c5f2d;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

.philosophy-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

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

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

.split-text {
    flex: 1;
    padding: 40px;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 28px;
    font-weight: normal;
    color: #1a1a1a;
}

.split-text p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.services-preview {
    padding: 100px 40px;
    background-color: #f8f6f3;
}

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

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: normal;
    color: #1a1a1a;
}

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

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #e5e0d8;
}

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

.service-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: normal;
}

.service-info p {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 24px;
}

.price {
    font-size: 1.5rem;
    color: #2c5f2d;
    font-weight: bold;
}

.cta-centered {
    text-align: center;
    margin-top: 60px;
}

.tradition-modern-split {
    display: flex;
    min-height: 500px;
}

.split-block {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.split-block.dark {
    background-color: #2a2a2a;
    color: #ffffff;
}

.split-block.light {
    background-color: #f4f1ea;
    color: #2a2a2a;
}

.block-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: normal;
}

.block-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.booking-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.booking-intro {
    text-align: center;
    margin-bottom: 60px;
}

.booking-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: normal;
}

.booking-intro p {
    font-size: 1.05rem;
    color: #5a5a5a;
}

.booking-form {
    background-color: #f8f6f3;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #2a2a2a;
    margin-bottom: 10px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid #d8d4cc;
    background-color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.cta-submit {
    width: 100%;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.cta-submit:hover {
    background-color: #234a24;
}

.main-footer {
    background-color: #2a2a2a;
    color: #d0d0d0;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: normal;
}

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

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

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

.footer-col ul li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.disclaimer-footer {
    background-color: #f4f1ea;
    padding: 30px 40px;
    text-align: center;
    font-size: 0.9rem;
    color: #5a5a5a;
    line-height: 1.6;
    border-top: 1px solid #e0ddd5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 24px 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #8fc490;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.cookie-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #234a24;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-reject:hover {
    background-color: #444;
}

.page-hero {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 100px 40px;
    text-align: center;
}

.hero-content-center h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.hero-content-center p {
    font-size: 1.2rem;
    color: #d0d0d0;
}

.about-split {
    padding: 100px 40px;
    background-color: #ffffff;
}

.values-section {
    padding: 100px 40px;
    background-color: #f8f6f3;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.value-block {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #2c5f2d;
    font-weight: normal;
}

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

.craftmanship-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.philosophy-text {
    padding: 100px 40px;
    background-color: #f4f1ea;
}

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

.text-container h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
    text-align: center;
    font-weight: normal;
    color: #1a1a1a;
}

.text-container p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 24px;
    line-height: 1.8;
}

.cta-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #f8f6f3;
    padding: 80px 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: normal;
    color: #1a1a1a;
}

.cta-box p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 32px;
}

.services-detailed {
    padding: 60px 40px;
    background-color: #ffffff;
}

.service-detail-block {
    margin-bottom: 80px;
}

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

.service-detail-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
    background-color: #f8f6f3;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.detail-image {
    flex: 1;
    background-color: #e5e0d8;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-content {
    flex: 1;
    padding: 60px;
}

.detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    font-weight: normal;
    color: #1a1a1a;
}

.price-large {
    font-size: 2rem;
    color: #2c5f2d;
    font-weight: bold;
    margin-bottom: 24px;
}

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

.service-features {
    list-style: none;
    margin-top: 28px;
}

.service-features li {
    font-size: 1rem;
    color: #5a5a5a;
    padding: 12px 0;
    border-bottom: 1px solid #e0ddd5;
}

.service-features li:before {
    content: "✓ ";
    color: #2c5f2d;
    font-weight: bold;
    margin-right: 8px;
}

.booking-cta-section {
    padding: 100px 40px;
    background-color: #2a2a2a;
}

.cta-box-large {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
}

.cta-box-large h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: normal;
    color: #ffffff;
}

.cta-box-large p {
    font-size: 1.15rem;
    color: #d0d0d0;
    margin-bottom: 40px;
}

.contact-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    font-weight: normal;
    color: #1a1a1a;
}

.contact-info > p {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 40px;
}

.detail-item {
    margin-bottom: 32px;
}

.detail-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c5f2d;
    font-weight: normal;
}

.detail-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-note {
    background-color: #f8f6f3;
    padding: 24px;
    border-left: 4px solid #2c5f2d;
}

.contact-note p {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background-color: #e5e0d8;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
}

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

.map-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: rgba(42, 42, 42, 0.9);
    color: #ffffff;
    padding: 20px 30px;
}

.map-overlay p {
    font-size: 1rem;
    line-height: 1.6;
}

.directions-section {
    padding: 80px 40px;
    background-color: #f8f6f3;
}

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

.directions-container h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: normal;
    color: #1a1a1a;
}

.directions-split {
    display: flex;
    gap: 60px;
}

.direction-block {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.direction-block h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c5f2d;
    font-weight: normal;
}

.direction-block p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 12px;
}

.appointment-reminder {
    padding: 80px 40px;
    background-color: #ffffff;
}

.reminder-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #f8f6f3;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.reminder-box h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    font-weight: normal;
    color: #1a1a1a;
}

.reminder-box p {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 32px;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #ffffff;
    min-height: 600px;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: normal;
    color: #1a1a1a;
}

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

.service-confirmation {
    background-color: #f8f6f3;
    padding: 24px;
    margin-bottom: 60px;
    border-left: 4px solid #2c5f2d;
}

.selected-service {
    font-size: 1.1rem;
    color: #2a2a2a;
}

.next-steps {
    margin-bottom: 60px;
    text-align: left;
}

.next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: normal;
    color: #1a1a1a;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: normal;
}

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

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: normal;
    color: #1a1a1a;
}

.legal-date {
    font-size: 0.95rem;
    color: #8a8a8a;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: normal;
    color: #2c5f2d;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: normal;
    color: #1a1a1a;
}

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

.legal-container ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-container ul li {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-container a {
    color: #2c5f2d;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-split,
    .content-split,
    .service-card,
    .tradition-modern-split,
    .contact-split,
    .directions-split,
    .service-detail-split {
        flex-direction: column;
    }

    .service-card.reverse,
    .content-split.reverse {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

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

    .nav-links {
        gap: 20px;
    }

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

    .section-header-center h2,
    .text-container h2,
    .cta-box h2 {
        font-size: 2rem;
    }

    .hero-left,
    .split-text,
    .detail-content,
    .booking-form {
        padding: 40px 30px;
    }
}