* {
    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.6;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-notice {
    background-color: #e8f4f8;
    color: #5a6c7d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #d1e3ea;
}

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

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

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

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

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

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

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #d4e4dd;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 40px;
    background: rgba(44, 95, 63, 0.85);
    border-radius: 4px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    font-weight: 300;
}

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

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

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c5f3f;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    max-width: 850px;
}

.experience-section {
    padding: 80px 0;
    background-color: #f7f9f8;
}

.experience-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.experience-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.experience-item.reverse {
    flex-direction: row-reverse;
}

.experience-item img {
    width: 50%;
    border-radius: 4px;
    object-fit: cover;
    background-color: #d4e4dd;
}

.experience-content {
    width: 50%;
}

.experience-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c5f3f;
}

.experience-content p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
}

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

.services-preview h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c5f3f;
}

.services-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #f7f9f8;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #d4e4dd;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #2c5f3f;
}

.service-card p {
    font-size: 16px;
    color: #4a5568;
    margin: 0 24px 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f3f;
    margin: 0 24px 16px;
}

.service-card .cta-link {
    display: inline-block;
    margin: 0 24px 24px;
    padding: 12px 28px;
    background-color: #2c5f3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.2s;
}

.service-card .cta-link:hover {
    background-color: #1e4430;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c5f3f;
}

.form-container > p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #2c5f3f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #1e4430;
}

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

.values-section h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c5f3f;
}

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

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c5f3f;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

.email-text {
    font-style: normal;
}

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

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 20px;
}

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

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

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

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

.cookie-content a {
    color: #7ed4ff;
    text-decoration: underline;
}

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

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

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

.cookie-btn.accept:hover {
    background-color: #1e4430;
}

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

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

.page-header {
    padding: 80px 0 60px;
    background-color: #e8f4ef;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #2c5f3f;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 20px;
    color: #4a5568;
}

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

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c5f3f;
}

.service-detail-content p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-pricing {
    margin-top: 32px;
    padding: 24px;
    background-color: #e8f4ef;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f3f;
}

.price-desc {
    font-size: 16px;
    color: #4a5568;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
    background-color: #d4e4dd;
}

.booking-cta {
    padding: 80px 0;
    background-color: #2c5f3f;
    text-align: center;
}

.booking-cta h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 16px;
}

.booking-cta p {
    font-size: 20px;
    color: #e8f4ef;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background-color: #ffffff;
    color: #2c5f3f;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #e8f4ef;
}

.about-content {
    padding: 60px 0;
}

.about-story,
.about-philosophy,
.values-detail,
.impact-section {
    margin-bottom: 80px;
}

.about-story h2,
.about-philosophy h2,
.team-section h2,
.values-detail h2,
.impact-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c5f3f;
}

.about-story p,
.about-philosophy p,
.impact-section p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image-section {
    margin: 80px 0;
}

.about-image-section img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
    background-color: #d4e4dd;
}

.team-section {
    margin-bottom: 80px;
}

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

.team-member {
    flex: 1;
    min-width: 260px;
    padding: 28px;
    background-color: #f7f9f8;
    border-radius: 4px;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c5f3f;
}

.team-member .role {
    font-size: 15px;
    font-weight: 600;
    color: #718096;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-block {
    padding: 32px;
    background-color: #f7f9f8;
    border-left: 4px solid #2c5f3f;
}

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

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

.contact-content {
    padding: 60px 0 100px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.info-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c5f3f;
}

.info-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 8px;
}

.info-block .note {
    font-size: 14px;
    color: #718096;
    font-style: italic;
    margin-top: 12px;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 4px;
    object-fit: cover;
    background-color: #d4e4dd;
}

.map-section {
    padding: 80px 0;
    background-color: #f7f9f8;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f3f;
}

.map-section p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.map-placeholder p {
    font-size: 16px;
    color: #2c5f3f;
    font-weight: 500;
}

.thanks-section {
    padding: 120px 0;
    background-color: #e8f4ef;
    min-height: 500px;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 48px;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2c5f3f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-container h1 {
    font-size: 36px;
    color: #2c5f3f;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.6;
}

.thanks-info {
    margin: 40px 0;
    padding: 28px;
    background-color: #f7f9f8;
    border-radius: 4px;
    text-align: left;
}

.thanks-info p {
    margin-bottom: 12px;
    font-weight: 600;
}

.thanks-info ul {
    list-style-position: inside;
    color: #4a5568;
}

.thanks-info li {
    margin-bottom: 8px;
    font-size: 15px;
}

.thanks-note {
    font-size: 14px;
    color: #718096;
    margin-top: 24px;
}

.back-button {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 36px;
    background-color: #2c5f3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.back-button:hover {
    background-color: #1e4430;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #2c5f3f;
}

.last-updated {
    font-size: 15px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2c5f3f;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c5f3f;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.6;
}

.url-display {
    color: #2c5f3f;
    word-break: break-all;
}

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

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

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

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

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

    .nav-links {
        gap: 20px;
    }

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

    .hero-content p {
        font-size: 16px;
    }

    .experience-item,
    .experience-item.reverse,
    .service-detail,
    .service-detail.reverse,
    .contact-grid {
        flex-direction: column;
    }

    .experience-item img,
    .experience-content {
        width: 100%;
    }

    .services-cards {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}
