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

.ad-notice {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #fff;
    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 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f3f;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #fff;
}

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

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-visual {
    flex: 1;
    background-color: #e8ede8;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #fff;
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2d5f3f;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.cta-secondary:hover {
    background-color: #2d5f3f;
    color: #fff;
}

.intro-section {
    padding: 100px 40px;
    background-color: #f5f7f5;
}

.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-left {
    flex: 1;
    background-color: #d4ddd4;
}

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

.intro-right {
    flex: 1;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d5f3f;
    font-weight: 700;
}

.intro-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.services-preview {
    padding: 100px 40px;
    background-color: #fff;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2d5f3f;
    font-weight: 700;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 24px 12px;
    color: #2d5f3f;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 24px 20px;
    color: #555;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #2d5f3f;
    margin: 20px 24px;
}

.select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 24px;
    background-color: #2d5f3f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-service:hover {
    background-color: #1e4428;
}

.booking-section {
    padding: 100px 40px;
    background-color: #f5f7f5;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.booking-visual {
    flex: 1;
    background-color: #d4ddd4;
}

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

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

.booking-form-area h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2d5f3f;
    font-weight: 700;
}

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

.form-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 14px 18px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 15px;
    display: none;
}

.form-notice.active {
    display: block;
}

.booking-form label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2a2a;
}

.booking-form input,
.booking-form textarea {
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.submit-btn {
    padding: 16px 32px;
    background-color: #2d5f3f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 12px;
}

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

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.trust-section {
    padding: 100px 40px;
    background-color: #fff;
}

.trust-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2d5f3f;
    font-weight: 700;
}

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

.testimonial {
    flex: 1;
    padding: 32px;
    background-color: #f5f7f5;
    border-radius: 8px;
    border-left: 4px solid #2d5f3f;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial cite {
    font-size: 14px;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

.site-footer {
    background-color: #2d5f3f;
    color: #fff;
    padding: 60px 40px 20px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-col a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

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

.cookie-banner.active {
    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: 15px;
    color: #2a2a2a;
}

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

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

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

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

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

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

.page-header {
    background-color: #2d5f3f;
    color: #fff;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.about-story {
    padding: 100px 40px;
    background-color: #fff;
}

.story-left {
    flex: 1;
}

.story-left h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2d5f3f;
    font-weight: 700;
}

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

.story-right {
    flex: 1;
    background-color: #d4ddd4;
}

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

.values-section {
    padding: 100px 40px;
    background-color: #f5f7f5;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2d5f3f;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 36px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2d5f3f;
    font-weight: 700;
}

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

.team-section {
    padding: 100px 40px;
    background-color: #fff;
}

.team-visual {
    flex: 1;
    background-color: #d4ddd4;
}

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

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d5f3f;
    font-weight: 700;
}

.team-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.approach-section {
    padding: 100px 40px;
    background-color: #f5f7f5;
}

.approach-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2d5f3f;
    font-weight: 700;
}

.approach-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2d5f3f;
    opacity: 0.3;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2d5f3f;
    font-weight: 700;
}

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

.services-detail {
    padding: 60px 40px;
    background-color: #fff;
}

.service-detail-item {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2d5f3f;
    font-weight: 700;
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 28px 0 14px;
    color: #2d5f3f;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #444;
}

.service-detail-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #555;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d5f3f;
    margin: 24px 0;
}

.service-detail-visual {
    flex: 1;
    background-color: #d4ddd4;
    min-height: 400px;
}

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

.contact-section {
    padding: 100px 40px;
    background-color: #fff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2d5f3f;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d5f3f;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f5f7f5;
    border-radius: 6px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.contact-visual {
    flex: 1;
    background-color: #d4ddd4;
    border-radius: 8px;
    overflow: hidden;
}

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

.thanks-section {
    padding: 120px 40px;
    background-color: #f5f7f5;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2d5f3f;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 28px;
}

.thanks-details {
    margin-bottom: 28px;
}

.selected-service {
    font-size: 17px;
    color: #2d5f3f;
    background-color: #f5f7f5;
    padding: 16px;
    border-radius: 6px;
}

.thanks-container p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 36px;
}

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

.legal-page {
    padding: 60px 40px;
    background-color: #fff;
    min-height: 60vh;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #2d5f3f;
    font-weight: 700;
}

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

.legal-container h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #2d5f3f;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 20px;
    margin: 28px 0 12px;
    color: #2d5f3f;
    font-weight: 700;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #444;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #444;
}

.legal-container a {
    color: #2d5f3f;
    text-decoration: underline;
}

.legal-container a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-split,
    .content-wrap,
    .booking-container,
    .testimonials,
    .footer-content,
    .approach-steps,
    .service-detail-item,
    .contact-container,
    .thanks-actions {
        flex-direction: column;
    }

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

    .nav-container {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .services-grid {
        gap: 24px;
    }

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

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

    .thanks-container {
        padding: 40px 28px;
    }
}