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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #3d5a3d;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.navigation {
    display: flex;
    gap: 28px;
}

.navigation a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.navigation a:hover {
    color: #3d5a3d;
}

.hero-section {
    margin-bottom: 0;
}

.hero-image {
    height: 580px;
    background-size: cover;
    background-position: center;
    background-color: #8B7355;
    position: relative;
}

.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.5));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 52px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 22px;
    color: #f0f0f0;
    font-weight: 400;
}

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c2c2c;
    font-weight: 600;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.image-text-section {
    padding: 90px 0;
}

.bg-light {
    background-color: #f8f8f8;
}

.bg-dark {
    background-color: #3d5a3d;
    color: #ffffff;
}

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 600;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.services-preview {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
    color: #2c2c2c;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    width: 100%;
    max-width: 360px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c2c2c;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #3d5a3d;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background-color: #3d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-select:hover {
    background-color: #2d4a2d;
}

.btn-select.selected {
    background-color: #5a7d5a;
}

.quote-section {
    padding: 100px 0;
}

.quote-section blockquote {
    font-size: 28px;
    font-style: italic;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 24px;
}

.quote-section cite {
    font-size: 16px;
    font-style: normal;
    color: #d0d0d0;
}

.form-section {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.form-intro p {
    font-size: 16px;
    color: #555;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c2c2c;
}

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

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

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

.btn-submit:hover {
    background-color: #2d4a2d;
}

.trust-section {
    padding: 90px 0;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

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

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

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-accept {
    background-color: #3d5a3d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2d4a2d;
}

.btn-reject {
    background-color: #666;
    color: #ffffff;
}

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

.page-header {
    padding: 60px 0 40px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
}

.page-header h1 {
    font-size: 44px;
    font-weight: 700;
    color: #2c2c2c;
}

.page-subtitle {
    font-size: 18px;
    color: #555;
    margin-top: 12px;
}

.story-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 600;
}

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

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

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.values-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.value-block {
    flex: 1;
    min-width: 280px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.value-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: 600;
}

.team-intro {
    margin-bottom: 40px;
}

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

.team-image-container {
    margin-bottom: 40px;
}

.team-image-container img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.team-text {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.philosophy-section {
    padding: 90px 0;
}

.philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: 600;
}

.philosophy-section p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.workshop-section {
    padding: 90px 0;
    background-color: #f8f8f8;
}

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

.certification-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 600;
}

.certification-section p {
    font-size: 17px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.certification-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.certification-section li {
    font-size: 17px;
    line-height: 1.8;
}

.url-display {
    word-break: break-all;
    color: #3d5a3d;
}

.service-detail-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail {
    margin-bottom: 40px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 34px;
    font-weight: 600;
    color: #2c2c2c;
}

.service-detail-price {
    font-size: 26px;
    font-weight: 700;
    color: #3d5a3d;
}

.service-detail-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.service-detail-text {
    flex: 1;
    min-width: 300px;
}

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

.service-detail-text h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.service-detail-text ul {
    margin-left: 24px;
}

.service-detail-text li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4a4a4a;
}

.cta-section {
    padding: 90px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3d5a3d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #2d4a2d;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #3d5a3d;
    text-decoration: none;
    border: 2px solid #3d5a3d;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
    margin-left: 16px;
}

.btn-secondary:hover {
    background-color: #3d5a3d;
    color: #ffffff;
}

.contact-info-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.contact-main {
    flex: 2;
    min-width: 300px;
}

.contact-sidebar {
    flex: 1;
    min-width: 280px;
}

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

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c2c2c;
}

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

.email-display {
    color: #3d5a3d;
    font-weight: 500;
}

.info-box {
    background-color: #f8f8f8;
    padding: 28px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c2c2c;
}

.info-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

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

.map-section h2 {
    font-size: 32px;
    margin-bottom: 28px;
    font-weight: 600;
}

.map-placeholder {
    background-color: #e8e8e8;
    padding: 60px 40px;
    border-radius: 4px;
    text-align: center;
}

.map-placeholder p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
    color: #555;
}

.thanks-info {
    background-color: #f0f7f0;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 50px;
    font-size: 18px;
    color: #3d5a3d;
}

.thanks-next {
    text-align: left;
    margin-bottom: 50px;
}

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 600;
}

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

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

.step-number {
    width: 48px;
    height: 48px;
    background-color: #3d5a3d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

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

.thanks-additional {
    padding: 80px 0;
}

.thanks-additional h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
}

.thanks-additional p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.legal-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.legal-section h1 {
    font-size: 40px;
    margin-bottom: 32px;
    font-weight: 700;
    color: #2c2c2c;
}

.legal-section h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.legal-section h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c2c2c;
}

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

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

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

.legal-intro {
    font-size: 18px;
    font-weight: 500;
    color: #555;
    margin-bottom: 32px;
}

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

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

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

.cookie-table th {
    background-color: #f8f8f8;
    font-weight: 600;
    color: #2c2c2c;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 32px;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .navigation {
        width: 100%;
        justify-content: center;
    }

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

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

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

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

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

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}