/**
 * Main stylesheet for domain.com website
 * 
 * Color Palette:
 * - Main background: #1F1F1F (dark graphite)
 * - Accent 1: #1DE9B6 (neon turquoise)
 * - Accent 2: #FFB300 (amber)
 * - Secondary: #A8E6CF (mint)
 * - Main text: #FFFFFF (white)
 * - Secondary text: #B0BEC5 (light gray)
 * - Block backgrounds: gradient from #1F1F1F to #263238
 */

/* --- BASE STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #1F1F1F;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow-x: hidden;
}

section {
    padding: 5rem 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #1DE9B6;
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
    color: #1DE9B6;
}

p {
    margin-bottom: 1.5rem;
    color: #B0BEC5;
}

a {
    color: #1DE9B6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: #A8E6CF;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: #1DE9B6;
    color: #1F1F1F;
    box-shadow: 0 4px 12px rgba(29, 233, 182, 0.25);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #A8E6CF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(29, 233, 182, 0.35);
    text-decoration: none;
    color: #1F1F1F;
}

.btn-secondary {
    background-color: transparent;
    color: #1DE9B6;
    border: 2px solid #1DE9B6;
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: rgba(29, 233, 182, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-cookie {
    background-color: #FFB300;
    color: #1F1F1F;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-cookie:hover, .btn-cookie:focus {
    background-color: #FFC107;
    transform: translateY(-1px);
    text-decoration: none;
    color: #1F1F1F;
}

/* --- HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(31, 31, 31, 0.9);
    padding: 1rem 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    background: linear-gradient(135deg, #1DE9B6, #A8E6CF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.logo:hover, .logo:focus {
    transform: scale(1.05);
    text-decoration: none;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav ul li {
    margin-left: 2.5rem;
}

.desktop-nav ul li a {
    color: #B0BEC5;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #1DE9B6;
    transition: width 0.3s ease;
}

.desktop-nav ul li a:hover, .desktop-nav ul li a:focus {
    color: #FFFFFF;
}

.desktop-nav ul li a:hover::after, .desktop-nav ul li a:focus::after,
.desktop-nav ul li.active a::after {
    width: 100%;
}

.desktop-nav ul li.active a {
    color: #FFFFFF;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* --- MOBILE MENU --- */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(38, 50, 56, 0.95);
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu nav ul {
    list-style: none;
}

.mobile-menu nav ul li {
    padding: 0.75rem 2rem;
    border-bottom: 1px solid rgba(176, 190, 197, 0.1);
}

.mobile-menu nav ul li:last-child {
    border-bottom: none;
}

.mobile-menu nav ul li a {
    color: #B0BEC5;
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: color 0.3s ease;
}

.mobile-menu nav ul li a:hover, .mobile-menu nav ul li a:focus,
.mobile-menu nav ul li.active a {
    color: #1DE9B6;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.9) 0%, rgba(38, 50, 56, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/Z5z4Dd.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: rgba(31, 31, 31, 0.5);
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #B0BEC5;
}

/* --- ABOUT SECTION --- */
.about {
    background: linear-gradient(135deg, #1F1F1F 0%, #263238 100%);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1 1 500px;
}

.about-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* --- ADVANTAGES SECTION --- */
.advantages {
    background-color: #1F1F1F;
}

.advantage-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(38, 50, 56, 0.8) 0%, rgba(31, 31, 31, 0.8) 100%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.advantage-image {
    width: 100%;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.advantage-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.advantage-item:hover .advantage-image img {
    transform: scale(1.05);
}

.advantage-item h3 {
    margin-bottom: 1rem;
}

/* --- SERVICES SECTION --- */
.services {
    background: linear-gradient(135deg, #263238 0%, #1F1F1F 100%);
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.9) 0%, rgba(38, 50, 56, 0.9) 100%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #1DE9B6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    margin-bottom: 1.5rem;
}

.service-card p {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials {
    background-color: #1F1F1F;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slide {
    margin-bottom: 3rem;
}

.testimonial-content {
    background: linear-gradient(135deg, rgba(38, 50, 56, 0.8) 0%, rgba(31, 31, 31, 0.8) 100%);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 5rem;
    color: rgba(29, 233, 182, 0.2);
    font-family: serif;
    line-height: 0;
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #FFFFFF;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.author-name {
    font-weight: 600;
    font-size: 1.125rem;
    color: #1DE9B6;
}

.author-company {
    color: #B0BEC5;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.nav-form {
    display: inline-block;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #1DE9B6;
    background: transparent;
    color: #1DE9B6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover, .nav-btn:focus {
    background-color: rgba(29, 233, 182, 0.1);
}

.testimonial-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator-form {
    display: inline-block;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(176, 190, 197, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover, .indicator:focus {
    background-color: rgba(176, 190, 197, 0.5);
}

.indicator.active {
    background-color: #1DE9B6;
    transform: scale(1.2);
}

/* --- ORDER FORM SECTION --- */
.order-form {
    background: linear-gradient(135deg, #1F1F1F 0%, #263238 100%);
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(38, 50, 56, 0.7);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
    border: 1px solid rgba(29, 233, 182, 0.2);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group:last-child {
    margin-bottom: 0;
    text-align: center;
}

.form-group.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-group.checkbox-group input {
    margin-top: 0.25rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form select {
    width: 100%;
    padding: 0.875rem;
    border-radius: 8px;
    border: 1px solid rgba(176, 190, 197, 0.3);
    background-color: rgba(38, 50, 56, 0.5);
    color: #FFFFFF;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form select:focus {
    outline: none;
    border-color: #1DE9B6;
    box-shadow: 0 0 0 2px rgba(29, 233, 182, 0.2);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B0BEC5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

.contact-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(176, 190, 197, 0.3);
    background-color: rgba(38, 50, 56, 0.5);
    appearance: none;
    cursor: pointer;
}

.contact-form input[type="checkbox"]:checked {
    background-color: #1DE9B6;
    border-color: #1DE9B6;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F1F1F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.error-message {
    color: #FF5252;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.global-error {
    text-align: center;
    padding: 0.75rem;
    background-color: rgba(255, 82, 82, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 82, 82, 0.3);
}

/* --- FAQ SECTION --- */
.faq-section {
    background-color: #1F1F1F;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(38, 50, 56, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.faq-form {
    width: 100%;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover, .faq-question:focus {
    background-color: rgba(29, 233, 182, 0.05);
}

.faq-toggle-icon {
    font-size: 1.5rem;
    color: #1DE9B6;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: none;
}

.faq-item.open .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 500px; /* Large enough to show content */
    display: block;
}

/* --- WHY US SECTION --- */
.why-us {
    background: linear-gradient(135deg, #263238 0%, #1F1F1F 100%);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.fact-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(38, 50, 56, 0.8) 0%, rgba(31, 31, 31, 0.8) 100%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.fact-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFB300;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #FFB300, #FFCA28);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fact-text {
    color: #B0BEC5;
    font-size: 1.125rem;
}

/* --- CONTACT SECTION --- */
.contact-section {
    background-color: #1F1F1F;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: #1DE9B6;
    flex-shrink: 0;
}

.contact-item p {
    margin-bottom: 0;
    color: #FFFFFF;
}

.map-container {
    flex: 1 1 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* --- FOOTER --- */
.site-footer {
    background-color: #263238;
    padding: 5rem 0 2rem;
    color: #B0BEC5;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info {
    flex: 1 1 400px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1DE9B6, #A8E6CF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    flex: 1 1 500px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links-column {
    flex: 1 0 150px;
}

.footer-links-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: #FFFFFF;
}

.footer-links-column ul {
    list-style: none;
}

.footer-links-column ul li {
    margin-bottom: 0.75rem;
}

.footer-links-column ul li a {
    color: #B0BEC5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-column ul li a:hover, .footer-links-column ul li a:focus {
    color: #1DE9B6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(176, 190, 197, 0.1);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(38, 50, 56, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease;
    display: none;
}

.cookie-banner.show {
    transform: translateY(0);
    display: block !important;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1 1 500px;
}

/* --- LEGAL PAGES STYLE --- */
.legal-page {
    padding: 8rem 0 5rem;
}

/* --- THANK YOU PAGE STYLE --- */
.thank-you-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(38, 50, 56, 0.5);
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 3rem;
    border: 1px solid rgba(29, 233, 182, 0.2);
}

.legal-container h1 {
    margin-bottom: 2rem;
    text-align: center;
}

.legal-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.legal-container h2::after {
    left: 0;
    transform: none;
    width: 60px;
}

.legal-container p {
    margin-bottom: 1.5rem;
}

.legal-container ul, .legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .advantage-items {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.125rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
        max-width: 400px;
    }
    
    .legal-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .hero {
        min-height: 450px;
    }
    
    .advantage-items {
        gap: 1.5rem;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .fact-number {
        font-size: 2.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-container {
        max-width: 320px;
        padding: 1.5rem;
    }
}
