/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #1a1a1a;
    background-color: #fdfcfa;
    overflow-x: hidden;
}

/* Typography - MINIMAL PREMIUM: Big Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.4;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: #2d5a3d;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Container System - MINIMAL PREMIUM: Large Spacing */
.container-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-medium {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-full {
    width: 100%;
    padding: 0;
}

/* Navigation - MINIMAL PREMIUM: Minimal Nav */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(45, 90, 61, 0.1);
}

.nav-brand {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2d5a3d;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #2d5a3d;
    transition: all 0.3s ease;
}

/* Hero Section - MINIMAL PREMIUM */
.hero-minimal {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 6rem;
}

.hero-content {
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #4a4a4a;
    margin-top: 1rem;
}

/* Large Text */
.large-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.7;
    color: #2a2a2a;
}

/* Sections - MINIMAL PREMIUM: Large Spacing */
section {
    padding: 6rem 0;
}

.intro-section {
    padding: 8rem 0;
}

.visual-break {
    padding: 4rem 0;
}

.visual-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.visual-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* Problem Amplification */
.problem-amplification {
    padding: 8rem 0;
    background-color: #f5f3f0;
}

/* Insight Grid */
.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-top: 3rem;
}

.insight-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.insight-item h3 {
    font-size: 2rem;
    color: #2d5a3d;
    margin-bottom: 0.5rem;
}

.insight-item p {
    font-size: 1.125rem;
    color: #5a5a5a;
}

/* CTA Inline */
.cta-inline {
    text-align: center;
    padding: 3rem 0;
}

.cta-text {
    font-size: 1.25rem;
    color: #2d5a3d;
    letter-spacing: 0.02em;
    border-bottom: 1px solid #2d5a3d;
    padding-bottom: 0.25rem;
    display: inline-block;
}

/* Story Section */
.story-section {
    padding: 8rem 0;
}

/* Trust Building */
.trust-building {
    padding: 6rem 0;
    background-color: #2d5a3d;
    color: #fdfcfa;
}

.trust-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.trust-col {
    flex: 1;
    min-width: 280px;
}

.trust-building h2,
.trust-building h3 {
    color: #fdfcfa;
}

.trust-building p {
    color: rgba(253, 252, 250, 0.9);
}

/* Testimonials */
.testimonial-section {
    padding: 6rem 0;
}

.testimonial {
    border-left: 3px solid #2d5a3d;
    padding-left: 2rem;
    margin: 3rem 0;
}

.testimonial p {
    font-size: 1.375rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 1rem;
    font-style: normal;
    color: #6a6a6a;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.testimonial-grid .testimonial {
    flex: 1;
    min-width: 300px;
}

/* Visual Spacer */
.visual-spacer {
    padding: 3rem 0;
}

.image-dual {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Benefit Reveal */
.benefit-reveal {
    padding: 7rem 0;
}

.benefit-list {
    list-style: none;
    margin-top: 2rem;
}

.benefit-list li {
    font-size: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #e0e0e0;
    padding-left: 2rem;
    position: relative;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
}

/* Services Preview */
.services-preview {
    padding: 8rem 0;
    background-color: #f5f3f0;
}

.section-intro {
    font-size: 1.25rem;
    text-align: center;
    color: #5a5a5a;
    margin-bottom: 4rem;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
    position: relative;
}

.service-card.featured {
    border: 2px solid #2d5a3d;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #2d5a3d;
    color: #fdfcfa;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.service-duration {
    font-size: 0.9rem;
    color: #6a6a6a;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 600;
    color: #2d5a3d;
    margin: 1.5rem 0;
}

.price-note {
    font-size: 0.875rem;
    color: #8a8a8a;
    margin-top: 0.5rem;
}

.btn-service {
    width: 100%;
    padding: 1rem;
    background-color: #2d5a3d;
    color: #fdfcfa;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-service:hover {
    background-color: #1f3d29;
}

/* CTA Block */
.cta-block {
    padding: 7rem 0;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background-color: #2d5a3d;
    color: #fdfcfa;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-primary:hover {
    background-color: #1f3d29;
    opacity: 1;
}

/* Urgency Section */
.urgency-section {
    padding: 5rem 0;
    background-color: #fffbf5;
    text-align: center;
}

.urgency-text {
    font-size: 1.25rem;
    color: #2d5a3d;
    font-weight: 500;
}

/* Form Section */
.form-section {
    padding: 8rem 0;
}

.form-intro {
    font-size: 1.125rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
    text-align: center;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    color: #2a2a2a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-size: 1rem;
    font-family: Georgia, 'Times New Roman', serif;
    transition: border-color 0.3s ease;
}

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

.form-privacy {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.6;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background-color: #2d5a3d;
    color: #fdfcfa;
    border: none;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    text-align: center;
    background-color: #f5f3f0;
}

.final-message {
    font-size: 1.75rem;
    font-weight: 300;
    font-style: italic;
    color: #2d5a3d;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fdfcfa;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    color: #fdfcfa;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(253, 252, 250, 0.7);
    font-size: 0.95rem;
}

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

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

.footer-col a {
    color: rgba(253, 252, 250, 0.8);
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 252, 250, 0.2);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(253, 252, 250, 0.6);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background-color: #2d5a3d;
    color: #fdfcfa;
    font-size: 1rem;
    letter-spacing: 0.05em;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(45, 90, 61, 0.3);
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sticky-btn:hover {
    background-color: #1f3d29;
    box-shadow: 0 6px 30px rgba(45, 90, 61, 0.4);
    transform: translateY(-2px);
    opacity: 1;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fdfcfa;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    min-width: 250px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
    letter-spacing: 0.05em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.btn-cookie-accept {
    background-color: #2d5a3d;
    color: #fdfcfa;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #fdfcfa;
    border: 1px solid #fdfcfa;
}

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.8;
}

/* Page Hero */
.page-hero {
    padding: 10rem 0 5rem;
    text-align: center;
    background-color: #f5f3f0;
}

/* About Page */
.about-intro {
    padding: 6rem 0;
}

.about-image {
    max-width: 400px;
    margin: 0 auto 3rem;
}

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

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

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

.credentials-list {
    list-style: none;
    margin-top: 2rem;
}

.credentials-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.125rem;
}

.approach-section {
    padding: 7rem 0;
    background-color: #f5f3f0;
}

.values-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-box {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-left: 3px solid #2d5a3d;
}

.cta-section {
    padding: 6rem 0;
    text-align: center;
}

/* Services Page */
.services-intro {
    padding: 3rem 0 5rem;
}

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

.service-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: center;
}

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

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

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

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

.service-info ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-info ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    color: #6a6a6a;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.price {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d5a3d;
}

.price-original {
    font-size: 1.5rem;
    color: #8a8a8a;
    text-decoration: line-through;
}

.price-special {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d5a3d;
}

.savings {
    font-size: 0.95rem;
    color: #2d5a3d;
    background-color: #e8f3ec;
    padding: 0.5rem 1rem;
}

.featured-service {
    position: relative;
    padding: 3rem;
    background-color: #f9f8f6;
    border: 2px solid #2d5a3d;
    margin: 4rem 0;
}

.featured-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2d5a3d;
    color: #fdfcfa;
    padding: 0.5rem 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.faq-section {
    padding: 6rem 0;
    background-color: #f5f3f0;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    color: #2d5a3d;
    margin-bottom: 0.75rem;
}

.booking-cta {
    padding: 6rem 0;
    text-align: center;
}

/* Contact Page */
.contact-intro {
    padding: 3rem 0 5rem;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

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

.contact-item h3 {
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.contact-note {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-top: 1rem;
}

.contact-map {
    padding: 4rem 0;
}

.map-placeholder {
    background-color: #e8e6e3;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder p {
    font-size: 1.125rem;
    color: #2a2a2a;
}

.map-info {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #5a5a5a;
}

.contact-cta {
    padding: 6rem 0;
    text-align: center;
    background-color: #f5f3f0;
}

.faq-contact {
    padding: 6rem 0;
}

/* Thanks Page */
.thanks-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    background-color: #e8f3ec;
}

.thanks-content {
    padding: 5rem 0;
    text-align: center;
}

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

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-message {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.next-steps {
    max-width: 600px;
    margin: 3rem auto;
    text-align: left;
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    margin-top: 2rem;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 1.25rem 0 1.25rem 3rem;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1.25rem;
    background-color: #2d5a3d;
    color: #fdfcfa;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.thanks-preparation {
    padding: 5rem 0;
    background-color: #f5f3f0;
}

.preparation-list {
    list-style: none;
    margin-top: 2rem;
}

.preparation-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
}

.preparation-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-size: 1.5rem;
}

.note {
    font-size: 0.95rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 2rem;
}

.thanks-explore {
    padding: 5rem 0;
}

.thanks-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto 0;
}

.thanks-link {
    padding: 1rem;
    border: 1px solid #2d5a3d;
    text-align: center;
    color: #2d5a3d;
    transition: all 0.3s ease;
}

.thanks-link:hover {
    background-color: #2d5a3d;
    color: #fdfcfa;
    opacity: 1;
}

.thanks-contact {
    padding: 4rem 0;
    text-align: center;
    background-color: #f5f3f0;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 4rem;
}

.update-date {
    font-size: 0.95rem;
    color: #6a6a6a;
    text-align: center;
    margin-bottom: 3rem;
}

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

.legal-content h2 {
    margin-top: 3rem;
    font-size: 1.75rem;
}

.legal-content h3 {
    margin-top: 2rem;
    font-size: 1.25rem;
}

.legal-content h4 {
    margin-top: 1.5rem;
    font-size: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
}

.legal-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.95rem;
    color: #6a6a6a;
}

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.gdpr-table th,
.cookie-table th {
    background-color: #f5f3f0;
    font-weight: 600;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .nav-minimal {
        padding: 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background-color: #fdfcfa;
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        display: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-minimal {
        min-height: 80vh;
        padding: 6rem 1.5rem 4rem;
    }

    section {
        padding: 4rem 0;
    }

    .intro-section,
    .story-section,
    .services-preview,
    .form-section {
        padding: 5rem 0;
    }

    .insight-grid,
    .trust-columns,
    .philosophy-grid,
    .values-boxes {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-btn {
        width: 100%;
        text-align: center;
    }

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

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

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

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

@media (max-width: 480px) {
    .large-text {
        font-size: 1.25rem;
    }

    .testimonial p {
        font-size: 1.125rem;
    }

    .service-price,
    .price,
    .price-special {
        font-size: 2rem;
    }
}
