* {
    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: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.floating-nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 90%;
    width: auto;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c5f2d;
    margin-right: 40px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-visual {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 700px;
    font-weight: 300;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
}

.story-intro {
    padding: 120px 20px;
    background-color: #fdfdfb;
}

.story-content {
    max-width: 720px;
    margin: 0 auto;
}

.story-lead {
    font-size: 28px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #2c5f2d;
    font-weight: 400;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
}

.visual-break {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

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

.insight-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #2c3e50;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.insight-image {
    flex: 0 0 450px;
    background-color: #f0f4f8;
}

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

.experience-reveal {
    padding: 120px 20px;
    background: linear-gradient(to bottom, #f7fafc, #ffffff);
}

.experience-reveal h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    max-width: 680px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
}

.experience-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.experience-card {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    flex: 0 0 45%;
    background-color: #e2e8f0;
}

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

.card-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin-top: 8px;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 32px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #1f4620;
    transform: scale(1.02);
}

.testimonial-flow {
    padding: 100px 20px;
    background-color: #2c5f2d;
    color: #ffffff;
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.booking-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #f0f9f4 0%, #e6f7ed 100%);
}

.booking-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.booking-wrapper h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.booking-wrapper > p {
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 48px;
    color: #4a5568;
}

.booking-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #1f4620;
    transform: scale(1.01);
}

.final-visual {
    width: 100%;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

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

.final-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    padding: 20px;
}

.final-overlay p {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    max-width: 700px;
    line-height: 1.4;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.site-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 20px 20px;
}

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

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

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

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

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

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border-left: 4px solid #ed8936;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5e0;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2d3748;
    color: #ffffff;
    padding: 24px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

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

.cookie-btn:hover {
    transform: scale(1.03);
}

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

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

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

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

.page-hero {
    width: 100%;
    height: 60vh;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

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

.about-story {
    padding: 80px 20px 120px;
    background-color: #fdfdfb;
}

.about-story .story-content {
    max-width: 800px;
}

.about-story h2 {
    font-size: 38px;
    margin-top: 48px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.story-image {
    width: 100%;
    height: auto;
    margin: 48px 0;
    border-radius: 8px;
}

.services-intro {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.intro-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #4a5568;
}

.services-detail {
    padding: 40px 20px 120px;
    background-color: #fdfdfb;
}

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

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

.service-visual {
    flex: 0 0 48%;
    background-color: #e2e8f0;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.service-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a5568;
}

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

.service-includes li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 24px;
}

.service-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-cta:hover {
    background-color: #1f4620;
    transform: scale(1.02);
}

.contact-content {
    padding: 80px 20px 120px;
    background-color: #fdfdfb;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f2d;
    font-weight: 700;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.email-text {
    font-weight: 600;
    color: #2c5f2d;
}

.contact-visual {
    flex: 0 0 45%;
    background-color: #e2e8f0;
}

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

.thanks-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #f0f9f4 0%, #e6f7ed 100%);
    min-height: 70vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c5f2d;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 4px solid #2c5f2d;
    font-size: 18px;
    font-weight: 600;
    color: #2c5f2d;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ffffff;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.thanks-visual {
    max-width: 700px;
    margin: 60px auto 0;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.legal-page {
    padding: 80px 20px 120px;
    background-color: #fdfdfb;
}

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

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

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

.legal-content h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #2c5f2d;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.legal-content li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4a5568;
}

.legal-content a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1f4620;
}

@media (max-width: 1024px) {
    .insight-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .insight-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .service-item,
    .service-item.reverse {
        flex-direction: column;
    }

    .service-visual {
        flex: 0 0 auto;
        width: 100%;
    }

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

    .contact-visual {
        flex: 0 0 auto;
        width: 100%;
    }
}

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

    .nav-brand {
        margin-right: 0;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .hero-overlay h1 {
        font-size: 42px;
    }

    .hero-overlay p {
        font-size: 18px;
    }

    .story-lead {
        font-size: 22px;
    }

    .insight-text h2 {
        font-size: 32px;
    }

    .experience-reveal h2 {
        font-size: 36px;
    }

    .experience-card {
        flex-direction: column;
    }

    .card-image {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
    }

    .card-content {
        padding: 32px 24px;
    }

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

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

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

    .thanks-actions {
        flex-direction: column;
    }

    .final-overlay p {
        font-size: 24px;
    }
}

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

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

    .booking-form {
        padding: 32px 24px;
    }

    .service-info h2 {
        font-size: 28px;
    }
}