/**
 * Quit Smoking Landing Page Styles
 * Modern, responsive design that bypasses WordPress theme
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.qsl-landing-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.qsl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing */
.qsl-section {
    width: 100%;
}

/* SECTION 1: HEADLINE */
.qsl-headline-section {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab),
                url('../images/Quit Smoking Hero BG2.webp') center center / cover no-repeat;
    background-size: 400% 400%, cover;
    background-position: 0% 50%, center;
    animation: qsl-gradient 15s ease infinite;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

@keyframes qsl-gradient {
    0% {
        background-position: 0% 50%, center;
    }
    50% {
        background-position: 100% 50%, center;
    }
    100% {
        background-position: 0% 50%, center;
    }
}

/* Waves Container */
.qsl-waves-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Wave Animation */
.qsl-wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: absolute;
    width: 200%;
    height: 12em;
    animation: qsl-wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.qsl-wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: qsl-wave 18s linear reverse infinite;
    opacity: 0.8;
}

.qsl-wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: qsl-wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes qsl-wave {
    2% {
        transform: translateX(1);
    }
    25% {
        transform: translateX(-25%);
    }
    50% {
        transform: translateX(-50%);
    }
    75% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(1);
    }
}

/* Ensure content stays above waves */
.qsl-headline-section .qsl-container {
    position: relative;
    z-index: 2;
}


.qsl-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 30px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

/* Subheadline inside blue section */
.qsl-headline-section .qsl-subheadline {
    font-size: 1.5rem;
    color: #e8e8e8;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

/* CTA Button in headline section */
.qsl-headline-section .qsl-cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #1a5490;
    padding: 18px 45px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.qsl-headline-section .qsl-cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* SECTION 2: SUBHEADLINE - Now hidden/removed */
.qsl-subheadline-section {
    display: none;
}

/* SECTION 2: ABOUT US */
.qsl-about-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.qsl-about-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 20px;
    line-height: 1.3;
}

.qsl-about-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.qsl-about-content p {
    margin-bottom: 15px;
}

.qsl-about-content p:last-child {
    margin-bottom: 0;
}

.qsl-about-content strong {
    color: #1a5490;
    font-weight: 600;
}

/* Section Titles */
.qsl-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 30px;
    text-align: center;
}

/* Bullet Lists */
.qsl-bullet-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.qsl-bullet-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.qsl-bullet-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7bc4;
    font-weight: bold;
    font-size: 1.3rem;
}

/* SECTION 3: WHY THEY COME */
.qsl-why-section {
    background-color: #ffffff;
    padding: 60px 0;
}

/* SECTION 4: WHAT YOU GET */
.qsl-what-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* Two-column layout with image */
.qsl-section-content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* About Us Section - Sidebar Layout */
.qsl-about-section .qsl-section-content-with-image {
    grid-template-columns: 450px 1fr;
    align-items: flex-start;
    gap: 40px;
}

.qsl-about-section .qsl-image-column {
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

.qsl-about-section .qsl-section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    display: block;
    position: sticky;
    top: 20px;
}

.qsl-content-column {
    display: flex;
    flex-direction: column;
}

.qsl-image-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qsl-section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    display: block;
}

.qsl-rick-image {
    margin: 20px 0 30px 0;
}

.qsl-rick-photo {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    display: block;
}

/* Certifications Section */
.qsl-certifications {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.qsl-certifications-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a5490;
    margin-bottom: 20px;
}

.qsl-certifications-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.qsl-cert-item {
    flex: 1;
    min-width: 150px;
    max-width: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.qsl-cert-item:hover {
    transform: scale(1.05);
}

.qsl-cert-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid #e0e0e0;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.qsl-cert-image:hover {
    box-shadow: 0 4px 12px rgba(26, 84, 144, 0.3);
    border-color: #2d7bc4;
}

/* Certificate Modal */
.qsl-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.qsl-modal-content {
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.qsl-modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 10001;
}

.qsl-modal-close:hover {
    color: #2d7bc4;
}

/* Image placeholder styles (for fallback) */
.qsl-image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    border: 2px dashed #999;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                      linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                      linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.qsl-placeholder-text {
    color: #999;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

/* Image positioning */
.qsl-image-left {
    order: 1;
}

.qsl-image-right {
    order: 2;
}

.qsl-section-content-with-image .qsl-content-column:first-child {
    order: 1;
}

.qsl-section-content-with-image .qsl-content-column:last-child {
    order: 2;
}

/* For Section 3: content left, image right */
.qsl-why-section .qsl-section-content-with-image .qsl-content-column {
    order: 1;
}

.qsl-why-section .qsl-section-content-with-image .qsl-image-column {
    order: 2;
}

/* For Section 2 (About Us): image left, content right */
.qsl-about-section .qsl-section-content-with-image .qsl-image-column {
    order: 1;
}

.qsl-about-section .qsl-section-content-with-image .qsl-content-column {
    order: 2;
}

/* For Section 4: image left, content right */
.qsl-what-section .qsl-section-content-with-image .qsl-image-column {
    order: 1;
}

.qsl-what-section .qsl-section-content-with-image .qsl-content-column {
    order: 2;
}

/* SECTION 5: BORDER INSTRUCTIONS - HORIZONTAL ROADMAP STYLE */
.qsl-border-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.qsl-roadmap-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.qsl-border-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

.qsl-border-card {
    background-color: #f8f9fa;
    border-left: 4px solid #2d7bc4;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qsl-border-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.qsl-card-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a5490 0%, #2d7bc4 100%);
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.qsl-card-title {
    font-size: 1.5rem;
    color: #1a5490;
    margin-bottom: 15px;
    font-weight: 700;
}

.qsl-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qsl-card-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.qsl-card-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7bc4;
    font-weight: bold;
    font-size: 1.2rem;
}

.qsl-card-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.qsl-border-quote {
    font-style: italic;
    font-size: 1.15rem;
    color: #1a5490;
    background-color: #e8f4f8;
    padding: 15px 20px;
    border-radius: 6px;
    margin: 15px 0 0 0;
    font-weight: 500;
    border-left: 3px solid #2d7bc4;
}

.qsl-border-reassurance {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* SECTION 6: TESTIMONIALS */
.qsl-testimonials-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

/* Testimonials Grid */
.qsl-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.qsl-testimonial-box {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #2d7bc4;
    display: flex;
    flex-direction: column;
}

.qsl-testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
    font-style: normal;
}

.qsl-testimonial-short {
    display: inline;
}

.qsl-testimonial-full {
    display: none;
}

.qsl-testimonial-full.show {
    display: inline;
}

.qsl-testimonial-short.hide {
    display: none;
}

.qsl-read-more-btn {
    border: none;
    background-color: rgba(45, 123, 196, 0.15);
    color: #2d7bc4;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 2px 6px;
    margin: 0 0 15px 0;
    text-align: left;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 3px;
    font-family: inherit;
}

.qsl-read-more-btn:hover {
    color: #1a5490;
    background-color: rgba(26, 84, 144, 0.25);
    text-decoration: none;
}

.qsl-testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
    margin: 0;
    margin-top: auto;
}


/* SECTION 7: WHAT HAPPENS WHEN YOU QUIT */
.qsl-timeline-section {
    background-color: #e8f4f8;
    padding: 60px 0;
}

.qsl-timeline-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.qsl-timeline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.qsl-timeline-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.qsl-timeline-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.qsl-timeline-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.qsl-timeline-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 12px;
}

.qsl-timeline-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* SECTION 8: LOCATION */
.qsl-location-section {
    background-color: #ffffff;
    padding: 80px 0;
    width: 100%;
}

.qsl-location-section .qsl-section-title {
    text-align: center;
    margin-bottom: 15px;
}

.qsl-location-subtitle {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a5490;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qsl-location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.qsl-location-image-wrapper {
    width: 100%;
}

.qsl-location-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.qsl-location-map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.qsl-google-map {
    width: 100%;
    height: 100%;
    border: none;
}

/* SECTION 9: CALL TO ACTION */
.qsl-cta-section {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab),
                url('../images/Quit Smoking Hero BG2.webp') center center / cover no-repeat;
    background-size: 400% 400%, cover;
    background-position: 0% 50%, center;
    animation: qsl-gradient 15s ease infinite;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.qsl-cta-section .qsl-section-title {
    color: #ffffff;
    margin-bottom: 30px;
}

.qsl-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.qsl-phone-text {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.qsl-phone-link {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 2px solid #ffffff;
    transition: opacity 0.3s;
}

.qsl-phone-link:hover {
    opacity: 0.8;
}

.qsl-cta-description {
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.qsl-cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #1a5490;
    padding: 18px 45px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.qsl-cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.qsl-trust-tags {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .qsl-headline {
        font-size: 2.2rem;
    }
    
    .qsl-headline-section .qsl-subheadline {
        font-size: 1.2rem;
    }
    
    .qsl-headline-section .qsl-cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .qsl-section-title {
        font-size: 2rem;
    }
    
    .qsl-about-section,
    .qsl-why-section,
    .qsl-what-section,
    .qsl-border-section,
    .qsl-testimonials-section,
    .qsl-timeline-section {
        padding: 40px 0;
    }
    
    .qsl-timeline-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .qsl-timeline-icon {
        width: 80px;
        height: 80px;
    }
    
    .qsl-timeline-heading {
        font-size: 1.2rem;
    }
    
    .qsl-about-name {
        font-size: 1.5rem;
    }
    
    .qsl-about-content {
        font-size: 1rem;
    }
    
    .qsl-certifications-grid {
        flex-direction: column;
    }
    
    .qsl-cert-item {
        max-width: 100%;
    }
    
    .qsl-modal-close {
        top: 10px;
        right: 20px;
        font-size: 35px;
    }
    
    .qsl-modal-content {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .qsl-location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .qsl-location-map-wrapper {
        height: 400px;
    }
    
    .qsl-section-content-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .qsl-section-image {
        max-height: 300px;
        object-fit: cover;
    }
    
    .qsl-about-section .qsl-section-content-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .qsl-about-section .qsl-image-column {
        position: static;
        display: none;
    }
    
    .qsl-about-section .qsl-section-image {
        position: static;
    }
    
    .qsl-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .qsl-testimonial-box {
        padding: 25px;
    }
    
    .qsl-about-section .qsl-section-content-with-image .qsl-image-column,
    .qsl-about-section .qsl-section-content-with-image .qsl-content-column,
    .qsl-why-section .qsl-section-content-with-image .qsl-content-column,
    .qsl-why-section .qsl-section-content-with-image .qsl-image-column,
    .qsl-what-section .qsl-section-content-with-image .qsl-image-column,
    .qsl-what-section .qsl-section-content-with-image .qsl-content-column {
        order: unset;
    }
    
    .qsl-headline-section,
    .qsl-cta-section {
        padding: 50px 0;
    }
    
    .qsl-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .qsl-phone-text {
        font-size: 1.5rem;
    }
    
    .qsl-cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .qsl-border-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px 0;
    }
    
    .qsl-border-card {
        padding: 25px 20px;
    }
    
    .qsl-card-number {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .qsl-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .qsl-headline {
        font-size: 1.8rem;
    }
    
    .qsl-headline-section .qsl-subheadline {
        font-size: 1.1rem;
    }
    
    .qsl-headline-section .qsl-cta-button {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .qsl-section-title {
        font-size: 1.7rem;
    }
    
    .qsl-bullet-list li {
        font-size: 1rem;
        padding-left: 30px;
    }
    
    .qsl-phone-text {
        font-size: 1.3rem;
    }
    
    .qsl-cta-button {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .qsl-container {
        padding: 0 15px;
    }
    
    .qsl-headline-section,
    .qsl-location-section {
        padding: 50px 0;
    }
    
    .qsl-location-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .qsl-location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .qsl-location-map-wrapper {
        height: 350px;
    }
    
    .qsl-cta-section {
        padding: 40px 0;
    }
}

/* Print Styles */
@media print {
    .qsl-cta-button {
        display: none;
    }
    
    .qsl-headline-section,
    .qsl-cta-section {
        background: #ffffff !important;
        color: #000 !important;
    }
}

