/* ============================================
   BIOGENIK - HIGH-END WELLNESS DESIGN SYSTEM
   ============================================ */

:root {
    /* Brand Color Palette */
    --gold: #DDA448;
    --dark: #050609;
    --pink: #E8AEB7;
    --teal: #53B3CB;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--gold) 0%, #c98d35 100%);
    --gradient-accent: linear-gradient(135deg, var(--teal) 0%, var(--pink) 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(5, 6, 9, 0.7), rgba(5, 6, 9, 0.4));

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-light: #E5E5E5;
    --gray-medium: #9CA3AF;
    --gray-dark: #4B5563;

    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Montserrat', sans-serif;

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(5, 6, 9, 0.08);
    --shadow-md: 0 4px 16px rgba(5, 6, 9, 0.12);
    --shadow-lg: 0 8px 32px rgba(5, 6, 9, 0.16);
    --shadow-xl: 0 16px 48px rgba(5, 6, 9, 0.2);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

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

body {
    font-family: var(--font-primary);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: var(--space-md);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: var(--space-md);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    margin-bottom: var(--space-sm);
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: var(--space-sm);
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.7;
}

.text-small {
    font-size: 0.875rem;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-light);
    transition: all var(--transition-base);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--white);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    color: var(--dark);
    margin-bottom: var(--space-lg);
}

.hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    color: var(--gray-dark);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero-cta {
    margin-top: var(--space-2xl);
}

/* ============================================
   PROTOCOLS SECTION
   ============================================ */

.protocols {
    background: var(--off-white);
}

.protocols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.protocol-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.protocol-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.protocol-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: transform var(--transition-base);
}

.protocol-card:hover .protocol-icon {
    transform: scale(1.1) rotate(5deg);
}

.protocol-card.wolverine .protocol-icon {
    background: linear-gradient(135deg, var(--gold), #c98d35);
}

.protocol-card.skin .protocol-icon {
    background: linear-gradient(135deg, var(--pink), #d89ba5);
}

.protocol-card.mind .protocol-icon {
    background: linear-gradient(135deg, var(--teal), #4099b0);
}

.protocol-card.body .protocol-icon {
    background: linear-gradient(135deg, var(--gold), var(--teal));
}

.protocol-card.immune .protocol-icon {
    background: linear-gradient(135deg, var(--teal), var(--pink));
}

.protocol-card h3 {
    color: var(--dark);
    margin-bottom: var(--space-xs);
    font-size: 1.5rem;
}

.protocol-subtitle {
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.protocol-card p {
    font-size: 0.9375rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ============================================
   MODAL SYSTEM
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 6, 9, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9) translateY(20px);
    transition: all var(--transition-base);
    position: relative;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: var(--space-xl);
    border-bottom: 1px solid var(--gray-light);
    position: relative;
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--gray-light);
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--dark);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    padding: var(--space-xl);
}

.modal-body h3 {
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.modal-body h4 {
    color: var(--gold);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.modal-body p {
    margin-bottom: var(--space-md);
}

.modal-body ul {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.modal-body li {
    color: var(--gray-dark);
    margin-bottom: var(--space-xs);
    line-height: 1.7;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    box-shadow: var(--shadow-md);
}

.process-step h3 {
    margin-bottom: var(--space-sm);
    color: var(--dark);
}

.process-step p {
    font-size: 1rem;
    color: var(--gray-dark);
}

.process-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ============================================
   APPROACH SECTION (INTEGRATIVE MEDICINE)
   ============================================ */

.approach {
    background: var(--white);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    max-width: 1000px;
    margin: 0 auto;
}

.approach-text {
    max-width: 100%;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: var(--space-lg);
}

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.modality-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-base);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.modality-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.modality-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    flex-shrink: 0;
}

.modality-card h4 {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: var(--space-xs);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.modality-card p {
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ============================================
   PHASED PROGRAMS / TIMELINE
   ============================================ */

.phases {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1b1f 100%);
    color: var(--white);
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-dark .section-header p {
    color: var(--gray-light);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(221, 164, 72, 0.3);
    flex-shrink: 0;
}

.timeline-content {
    padding-top: var(--space-sm);
}

.timeline-content h3 {
    color: var(--white);
    margin-bottom: var(--space-xs);
    font-size: 1.5rem;
}

.timeline-content p {
    color: var(--gray-light);
    font-size: 1rem;
    margin: 0;
}

.phases-cta {
    text-align: center;
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.emphasis-text {
    color: var(--gold);
    font-size: 1.125rem;
    font-style: italic;
    margin: 0;
}

/* ============================================
   MEDICAL TOURISM SECTION
   ============================================ */

.medical-tourism {
    background: var(--off-white);
}

.tourism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.tourism-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.tourism-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.tourism-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.tourism-card h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: var(--space-sm);
}

.tourism-card p {
    font-size: 0.9375rem;
    color: var(--gray-dark);
    margin: 0;
}

/* ============================================
   LOCATION SECTION
   ============================================ */

.location {
    background: var(--dark);
    color: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.location-text h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.location-text h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.location-text .lead-text {
    color: var(--white);
}

.location-text p {
    color: var(--gray-light);
}

.location-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    border-left: 4px solid var(--gold);
}

.location-details p {
    margin-bottom: var(--space-sm);
    font-size: 1rem;
}

.location-details strong {
    color: var(--white);
}

.location-cta {
    margin-top: var(--space-xl);
}

.location-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-map-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.location-map-placeholder p:first-child {
    font-size: 4rem;
    margin: 0;
}

.location-map-placeholder p:last-child {
    color: var(--gray-medium);
    margin: 0;
    font-size: 0.875rem;
}

.note-text {
    font-size: 0.8125rem;
    color: var(--gray-medium);
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
}

.footer-section p,
.footer-section a {
    color: var(--gray-light);
    text-decoration: none;
    display: block;
    margin-bottom: var(--space-xs);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.25rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer-legal {
    font-size: 0.875rem;
    color: var(--gray-medium);
    max-width: 900px;
    margin: var(--space-md) auto 0;
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .protocols-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .modal {
        margin: var(--space-sm);
    }

    /* New sections responsive */
    .modalities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: var(--space-md);
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .timeline-item:not(:last-child)::after {
        left: 25px;
        top: 50px;
    }

    .tourism-grid {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .location-visual {
        order: -1;
    }

    html {
        font-size: 14px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.bg-gradient {
    background: var(--gradient-primary);
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* ============================================
   LEGAL PAGES (PRIVACY NOTICE)
   ============================================ */

.legal-section {
    padding: calc(var(--navbar-height) + var(--space-4xl)) 0 var(--space-4xl);
    background: var(--white);
}

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

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.last-updated {
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin-bottom: var(--space-3xl);
    font-style: italic;
}

.legal-block {
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--gray-light);
}

.legal-block:last-of-type {
    border-bottom: none;
}

.legal-block h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.legal-block h3 {
    font-size: 1.125rem;
    color: var(--dark);
    margin: var(--space-lg) 0 var(--space-md);
    font-weight: 600;
}

.legal-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.legal-block ul,
.legal-block ol {
    margin: var(--space-md) 0 var(--space-lg) var(--space-xl);
    line-height: 1.8;
}

.legal-block li {
    margin-bottom: var(--space-sm);
    color: var(--dark);
}

.legal-block strong {
    color: var(--dark);
    font-weight: 600;
}

.legal-block a {
    color: var(--gold);
    text-decoration: underline;
    transition: color var(--transition-base);
}

.legal-block a:hover {
    color: var(--teal);
}

.legal-footer {
    background: linear-gradient(135deg, rgba(221, 164, 72, 0.1) 0%, rgba(83, 179, 203, 0.1) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-top: var(--space-3xl);
    border-left: 4px solid var(--gold);
}

.legal-footer p {
    margin-bottom: var(--space-sm);
    color: var(--dark);
    font-size: 0.9rem;
}

.legal-footer p:last-child {
    margin-bottom: 0;
}

.back-to-site {
    text-align: center;
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
}

/* Responsive for legal pages */
@media (max-width: 768px) {
    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-block h2 {
        font-size: 1.25rem;
    }

    .legal-block h3 {
        font-size: 1.0625rem;
    }

    .legal-block ul,
    .legal-block ol {
        margin-left: var(--space-lg);
    }

    .legal-footer {
        padding: var(--space-lg);
    }
}
