* {
    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: #333;
    background-color: #fafaf8;
}

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

.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    background-color: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.hero-visual {
    position: relative;
    margin-bottom: 4rem;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #d4c5b9;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    max-width: 800px;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.intro-asymmetric {
    padding: 4rem 0;
    background-color: #fff;
}

.intro-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.intro-text-block {
    flex: 1;
}

.intro-text-block h2 {
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-text-block p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}

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

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

.services-cards {
    padding: 5rem 0;
    background-color: #fafaf8;
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    color: #2c5f2d;
    margin-bottom: 3rem;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-image {
    width: 100%;
    height: 240px;
    background-color: #d4c5b9;
    overflow: hidden;
}

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

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-body h3 {
    font-size: 1.4rem;
    color: #2c5f2d;
    margin-bottom: 0.75rem;
}

.card-body p {
    color: #666;
    margin-bottom: 1.25rem;
    flex: 1;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.btn-select {
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select:hover {
    background-color: #234a24;
    transform: scale(1.02);
}

.form-section {
    padding: 5rem 0;
    background-color: #fff;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fafaf8;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.form-intro {
    color: #666;
    margin-bottom: 2rem;
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.selected-service-display p {
    color: #2c5f2d;
    font-weight: 600;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #234a24;
    transform: scale(1.02);
}

.community-section {
    padding: 5rem 0;
    background-color: #2c5f2d;
    color: #fff;
}

.community-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.community-text {
    flex: 1;
}

.community-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.community-text p {
    margin-bottom: 1rem;
    opacity: 0.95;
    font-size: 1.05rem;
}

.community-image {
    flex: 1;
    background-color: #456b47;
}

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

.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    line-height: 1.8;
    color: #aaa;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 1000;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: #333;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-accept {
    background-color: #2c5f2d;
    color: #fff;
}

.btn-accept:hover {
    background-color: #234a24;
    transform: scale(1.02);
}

.btn-reject {
    background-color: #e0e0e0;
    color: #333;
}

.btn-reject:hover {
    background-color: #d0d0d0;
    transform: scale(1.02);
}

.page-hero-simple {
    padding: 4rem 0 2rem;
    background-color: #fff;
    border-bottom: 3px solid #2c5f2d;
}

.page-hero-simple h1 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
}

.about-story {
    padding: 4rem 0;
    background-color: #fafaf8;
}

.story-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

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

.story-text-right {
    flex: 1;
}

.story-text-right h2 {
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.story-text-right p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}

.values-section {
    padding: 4rem 0;
    background-color: #fff;
}

.values-section h2 {
    font-size: 2rem;
    color: #2c5f2d;
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    background-color: #fafaf8;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.3rem;
    color: #2c5f2d;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #666;
}

.team-section {
    padding: 4rem 0;
    background-color: #fafaf8;
}

.team-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.team-text p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}

.team-image {
    flex: 1;
    background-color: #d4c5b9;
}

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

.philosophy-section {
    padding: 4rem 0;
    background-color: #fff;
}

.philosophy-section h2 {
    font-size: 2rem;
    color: #2c5f2d;
    text-align: center;
    margin-bottom: 1.5rem;
}

.philosophy-intro {
    font-size: 1.25rem;
    text-align: center;
    color: #555;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}

.cta-section-about {
    padding: 4rem 0;
    background-color: #f5f5f3;
}

.cta-box {
    background-color: #2c5f2d;
    color: #fff;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background-color: #fff;
    color: #2c5f2d;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.services-detailed {
    padding: 3rem 0;
}

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.service-detail-text h2 {
    font-size: 1.8rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.service-detail-text p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.equipment-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.equipment-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #666;
}

.equipment-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.price-display {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #e8f5e9;
    border-radius: 4px;
}

.price-label {
    font-weight: 600;
    color: #333;
    margin-right: 0.5rem;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5f2d;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}

.contact-info-section {
    padding: 4rem 0;
    background-color: #fafaf8;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 2rem;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

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

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
}

.location-section {
    padding: 4rem 0;
    background-color: #fff;
}

.location-section h2 {
    font-size: 2rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.location-section p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    max-width: 800px;
}

.thanks-section {
    padding: 5rem 0;
    background-color: #fafaf8;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.25rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.selected-service-info {
    color: #2c5f2d;
    font-weight: 600;
    font-size: 1.05rem;
}

.next-steps {
    text-align: left;
    margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 1.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #555;
}

.next-steps li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #2c5f2d;
    color: #fff;
}

.btn-primary:hover {
    background-color: #234a24;
    transform: scale(1.02);
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
    transform: scale(1.02);
}

.legal-page {
    padding: 3rem 0;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.75rem;
    color: #2c5f2d;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: #2c5f2d;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-page li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    color: #888;
    font-style: italic;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .intro-grid,
    .story-layout,
    .team-layout,
    .community-content,
    .contact-layout,
    .service-detail-content {
        flex-direction: column;
    }

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

    .service-card {
        width: 100%;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}
