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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: #6c757d;
}

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #4A7C59;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f7f4;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.hero-image {
    flex: 1;
    overflow: hidden;
    background-color: #e8ddd3;
}

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

.cta-button {
    display: inline-block;
    background-color: #4A7C59;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #3d6849;
    cursor: pointer;
}

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

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

.intro-image {
    flex: 1;
    overflow: hidden;
    background-color: #d4c5b9;
}

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

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.services-compact {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 18px;
    color: #6a6a6a;
}

.service-grid-modern {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    min-height: 400px;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-visual {
    flex: 1;
    overflow: hidden;
}

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

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

.service-info h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

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

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #4A7C59;
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #4A7C59;
}

.process-section {
    background-color: #f9f7f4;
    padding: 0;
}

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

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

.process-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #4A7C59;
    min-width: 50px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.process-image {
    flex: 1;
    overflow: hidden;
    background-color: #d4c5b9;
}

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

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

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

.form-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.form-wrapper {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #4A7C59;
}

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

.submit-btn:hover {
    background-color: #3d6849;
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #444444;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888888;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.5;
    color: #888888;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 25px 40px;
    display: none;
    z-index: 2000;
}

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

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

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

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #4A7C59;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #3d6849;
}

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

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

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

.hero-text {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f7f4;
}

.hero-text h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

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

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

.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.story-image {
    flex: 1;
    overflow: hidden;
    background-color: #d4c5b9;
}

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

.values-section {
    padding: 80px 40px;
    background-color: #f9f7f4;
}

.values-header {
    text-align: center;
    margin-bottom: 50px;
}

.values-header h2 {
    font-size: 40px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

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

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

.team-image {
    flex: 1;
    overflow: hidden;
    background-color: #c9b8a8;
}

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

.team-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.inline-cta {
    display: inline-block;
    color: #4A7C59;
    font-weight: 600;
    text-decoration: underline;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.inline-cta:hover {
    color: #3d6849;
}

.workshop-section {
    padding: 0;
    background-color: #f9f7f4;
}

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

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

.workshop-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.workshop-visual {
    flex: 1;
    overflow: hidden;
}

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

.page-intro-center {
    text-align: center;
    padding: 80px 40px 60px;
    background-color: #f9f7f4;
}

.page-intro-center h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-intro-center p {
    font-size: 18px;
    color: #6a6a6a;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4A7C59;
    font-weight: 700;
}

.price-display {
    font-size: 22px;
    font-weight: 700;
    color: #4A7C59;
    margin: 25px 0 20px;
}

.consultation-cta {
    padding: 80px 40px;
    background-color: #2c2c2c;
}

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

.cta-content-center h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-content-center p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #d0d0d0;
}

.cta-button-large {
    display: inline-block;
    background-color: #4A7C59;
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button-large:hover {
    background-color: #3d6849;
}

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

.contact-info-box {
    flex: 1;
    padding: 60px 50px;
    background-color: #f9f7f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-box h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.note {
    font-size: 14px;
    font-style: italic;
    color: #6a6a6a;
    margin-top: 8px;
}

.contact-map-placeholder {
    flex: 1;
    overflow: hidden;
}

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

.directions-section {
    padding: 60px 40px;
    background-color: #ffffff;
}

.directions-content {
    max-width: 1100px;
    margin: 0 auto;
}

.directions-content h2 {
    font-size: 32px;
    margin-bottom: 35px;
    text-align: center;
    color: #1a1a1a;
}

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

.direction-block {
    flex: 1;
}

.direction-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.direction-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.visit-cta-section {
    padding: 80px 40px;
    background-color: #f9f7f4;
}

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

.visit-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

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

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

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

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #4A7C59;
    font-weight: 600;
}

.next-steps-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.step-num {
    background-color: #4A7C59;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    padding-top: 8px;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.secondary-link {
    color: #4A7C59;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.secondary-link:hover {
    color: #3d6849;
}

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

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

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.legal-container ul {
    margin: 15px 0 15px 30px;
}

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

.legal-container a {
    color: #4A7C59;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #3d6849;
}

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: #6a6a6a;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f9f7f4;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 15px;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .process-split,
    .form-container-split,
    .story-split,
    .team-split,
    .workshop-split,
    .service-detail-split,
    .contact-layout-split,
    .directions-split,
    .service-card-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .team-split.reverse,
    .service-detail-split.reverse,
    .service-card-split.reverse {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content h1,
    .hero-text h1 {
        font-size: 36px;
    }

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

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