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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

.ad-notice {
    font-size: 12px;
    color: var(--text-light);
    padding: 5px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

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

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

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

.intro-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.intro-text {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.intro-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-modern {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 44px;
    margin-bottom: 16px;
}

.section-header-center p {
    font-size: 20px;
    color: var(--text-light);
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

.service-image-wrap {
    height: 280px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 12px 32px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #73604a;
}

.booking-form-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

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

.form-visual h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.form-visual p {
    font-size: 18px;
    color: var(--text-light);
}

.form-wrapper {
    flex: 1;
}

.booking-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.selected-service-box {
    background-color: var(--bg-white);
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    border-left: 4px solid var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #234d24;
}

.why-us-split {
    display: flex;
    background-color: var(--bg-light);
}

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

.why-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

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

.feature-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.why-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.main-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

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

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

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

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    color: #999;
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: var(--accent-color);
}

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

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

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

.btn-accept:hover {
    opacity: 0.9;
}

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

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

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

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

.about-hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
}

.intro-large {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-light);
}

.about-hero-image {
    flex: 1;
    background-color: var(--border-color);
}

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

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

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

.story-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.story-text {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.story-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.story-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.values-split {
    display: flex;
    background-color: var(--bg-light);
}

.values-content {
    flex: 1.2;
    padding: 80px 60px;
}

.values-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-block {
    flex: 1 1 calc(50% - 16px);
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-block p {
    color: var(--text-light);
    line-height: 1.6;
}

.values-visual {
    flex: 0.8;
    background-color: var(--border-color);
}

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

.team-info {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.team-info h2 {
    font-size: 40px;
    margin-bottom: 24px;
    text-align: center;
}

.team-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-split {
    display: flex;
    background-color: var(--bg-light);
}

.philosophy-text {
    flex: 1;
    padding: 80px 60px;
}

.philosophy-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.philosophy-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.philosophy-image {
    flex: 1;
    background-color: var(--border-color);
}

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

.services-hero {
    padding: 100px 0 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.services-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.services-intro {
    font-size: 20px;
    color: var(--text-light);
}

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

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

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.price-tag {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.service-includes {
    list-style: none;
    margin-bottom: 32px;
}

.service-includes li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-dark);
}

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

.booking-cta-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.booking-cta-section h2 {
    font-size: 44px;
    margin-bottom: 16px;
}

.booking-cta-section p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-hero {
    padding: 100px 0 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 20px;
    color: var(--text-light);
}

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

.contact-info-side {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-white);
}

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

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-address {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-row .day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-row .time {
    color: var(--text-light);
}

.contact-email-display {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.note-small {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-visual-side {
    flex: 1;
    background-color: var(--border-color);
}

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

.directions-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.directions-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.directions-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.transport-info {
    display: flex;
    gap: 40px;
}

.transport-option {
    flex: 1;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

.transport-option h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.transport-option p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

.thanks-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.thanks-container {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.service-confirmation {
    background-color: var(--bg-white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-info {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.btn-primary {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #234d24;
}

.btn-secondary {
    padding: 16px 40px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s;
}

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

.legal-page {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 12px;
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.legal-page li {
    margin-bottom: 8px;
    line-height: 1.6;
}

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

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

    .hero-left {
        padding: 40px 30px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .intro-split,
    .intro-split.reverse,
    .why-us-split,
    .story-split,
    .story-split.reverse,
    .values-split,
    .philosophy-split,
    .contact-split {
        flex-direction: column;
    }

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

    .form-container-split {
        flex-direction: column;
    }

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

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

    .transport-info {
        flex-direction: column;
    }

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

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

    .nav-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .intro-text,
    .why-content,
    .story-text,
    .values-content,
    .philosophy-text,
    .contact-info-side {
        padding: 40px 30px;
    }

    .section-header-center h2,
    .services-hero h1,
    .contact-hero h1,
    .about-hero-content h1 {
        font-size: 36px;
    }

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