/* styles.css */
:root {
    --primary-color: #2C3E50;
    --accent-color: #CC0000;
    --secondary-color: #3498DB;
    --background-color: rgb(238, 233, 226); /* Updated to match logo's dominant color */
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--background-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    padding: 0.5rem 1rem; /* Equal padding top/bottom */
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    height: 60px; /* Fixed height for consistency */
}

main {
    padding-top: 80px; /* Ensure content doesn't hide under navbar */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    padding: 0 1rem; /* Keep horizontal padding, remove vertical */
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}

#languageToggle {
    background-color: var(--primary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

#languageToggle:hover {
    background-color: var(--accent-color);
}

.section {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 2;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 80%;
    border-radius: 50%;
}

.image-caption {
    margin-top: 10px;
    text-align: center;
    font-style: italic;
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    min-width: 150px; /* Set minimum width */
    width: fit-content; /* Allow button to grow based on content */
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cta-button:hover {
    background-color: #a30000;
}

.services-container, .about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem; /* Increase gap between cards from 2% to 2rem */
    margin-bottom: 3rem; /* Add bottom margin between sections */
}

.service-card {
    flex-basis: calc(50% - 1rem); /* Adjust for 2-column layout with 2rem gap */
    background-color: white;
    padding: 2rem; /* Increase padding inside cards */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem; /* Add bottom margin to cards */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-card ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.service-card li {
    margin-bottom: 0.5rem;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-info {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

#captchaContainer {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

#captchaImage {
    background-color: #fff;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-family: monospace;
    letter-spacing: 5px;
    text-align: center;
    position: relative;
    width: 100%; /* Fill the entire width of the cell */
    height: 100%; /* Fill the entire height of the cell */
    object-fit: cover; /* Ensure the image scales properly without distortion */
    border-radius: 0; /* Remove any border radius for full coverage */
}

#captchaImage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 5px,
        rgba(0,0,0,0.03) 5px,
        rgba(0,0,0,0.03) 10px
    );
    z-index: 1;
}

#captchaImage span {
    position: relative;
    z-index: 2;
    font-weight: bold;
    font-size: 24px;
    color: var(--primary-color);
}

.hidden-content {
    display: none !important;
}

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Adjusted form layout styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal-sized columns */
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

textarea {
    resize: none; /* Prevent resizing */
    height: 50%; /* Reduce the size of the message box by 50% */
    min-height: 150px; /* Ensure a minimum height */
}

/* Captcha grid container */
.captcha-grid-container {
    display: grid;
    grid-template-rows: 1fr 1fr; /* Adjust rows to reflect button height */
    grid-template-columns: 1fr 1fr; /* Two columns */
    grid-template-areas: 
        "captcha-image captcha-input"
        "refresh-button verify-button"; /* Buttons in the bottom row */
    gap: 10px; /* Add spacing between grid items */
    height: 100%; /* Ensure the grid fills the available height */
    border: none; /* Remove the border around the section */
    background-color: var(--background-color); /* Ensure a consistent background */
}

/* Remove the cross effect inside the captcha section */
.captcha-grid-container::before,
.captcha-grid-container::after {
    content: none; /* Disable the pseudo-elements */
}

/* Captcha box styles */
.captcha-box {
    display: flex;
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    background-color: var(--background-color);
    font-size: 1rem;
    text-align: center;
    height: 100%; /* Fill the entire height of the grid cell */
    width: 100%; /* Fill the entire width of the grid cell */
    padding: 0; /* Remove any padding to ensure full coverage */
    box-sizing: border-box; /* Include borders in the element's dimensions */
}

/* Captcha image (top-left cell) */
#captchaImage {
    grid-area: captcha-image; /* Place in the top-left cell */
    width: 100%;
    height: 100%; /* Fill the entire height of the cell */
    object-fit: cover; /* Ensure the image scales properly */
    border: none;
}

/* Captcha input (top-right cell) */
.captcha-input {
    grid-area: captcha-input; /* Place in the top-right cell */
    width: 100%;
    height: 100%; /* Match the height of the captcha image */
    font-size: 1rem;
    box-sizing: border-box;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Refresh button styles */
.refresh-captcha-btn {
    background-color: var(--accent-color); /* Red button */
    color: white;
    border: none;
    cursor: pointer;
    width: 100%; 
    height: 100px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    width: 100%; /* Fill the entire width of the cell */
    height: 100%; /* Fill the entire height of the cell */
    font-size: 1rem; /* Adjust font size for better scaling */
    box-sizing: border-box; /* Include borders in the element's dimensions */
    padding: 0; /* Remove padding for full coverage */
}

.refresh-captcha-btn:hover {
    background-color: #a30000; /* Darker red on hover */
}

/* Verify button (bottom-right cell) */
.verify-captcha-btn {
    grid-area: verify-button; /* Place in the bottom-right cell */
    width: 100%;
    height: 100%; /* Fill the entire cell */
    background-color: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

/* Input and button styles */
.captcha-input {
    grid-area: captcha-input; /* Place in the top-right cell */
    width: 100%;
    height: 100%;
    font-size: 1rem;
    box-sizing: border-box;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.cta-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    min-width: 150px; /* Set minimum width */
    width: fit-content; /* Allow button to grow based on content */
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cta-button:hover {
    background-color: #a30000; /* Darker red on hover */
}

@media (max-width: 768px) {
    .cta-button {
        min-width: 120px; /* Slightly smaller on mobile */
    }
}

/* Updated captcha container styles */
.captcha-container {
    padding: 1rem;
    background-color: var(--background-color);
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Match the height of the left column */
}

.captcha-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two subcolumns */
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.captcha-image {
    padding: 0.5rem 1rem;
    background-color: #fff;
    border: none solid #ccc;
    border-radius: 4px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    min-width: 100px;
}

.refresh-captcha-btn {
    grid-area: refresh-button; /* Place in the bottom-left cell */
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.refresh-captcha-btn:hover {
    background-color: #a30000; /* Darker red on hover */
}

.captcha-input {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

/* Adjust the size of the section */
.section.container {
    width: 80%; /* Reduce the section width to 80% of its original size */
    margin: 0 auto; /* Center the section horizontally */
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
    .service-card {
        flex-basis: calc(48% - 2%); /* Adjust for 2-column layout with 2% gap */
    }
}

@media (max-width: 480px) {
    .service-card {
        flex-basis: 100%; /* Single column layout for very small screens */
    }
}
/* Add these styles to your existing CSS */

/* Form layout */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-column {
    flex: 1;
    min-width: 300px;
}

/* Captcha grid container */
.captcha-grid-container {
    display: grid;
    grid-template-rows: 1fr 1fr; /* Adjust rows to reflect button height */
    grid-template-columns: 1fr 1fr; /* Two columns */
    grid-template-areas: 
        "captcha-image captcha-input"
        "refresh-button verify-button"; /* Buttons in the bottom row */
    gap: 10px; /* Add spacing between grid items */
    height: 100%; /* Ensure the grid fills the available height */
    border: none; /* Remove the border around the section */
    background-color: var(--background-color); /* Ensure a consistent background */
}

.captcha-box {
    width: 100%;
}

/* Captcha styling */
#captchaImage, #captchaImageEn {
    background-color: #f8f8f8;
    padding: 1rem;
    border-radius: 5px;
    font-family: monospace;
    letter-spacing: 5px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

#captchaImage::before, #captchaImageEn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 5px,
        rgba(0,0,0,0.03) 5px,
        rgba(0,0,0,0.03) 10px
    );
    z-index: 1;
    border-radius: 5px;
}

#captchaText {
    position: relative;
    z-index: 2;
    font-weight: bold;
    font-size: 24px;
    color: #2C3E50;
}

/* Placeholder styling */
.placeholder-text {
    font-style: italic;
    color: #777;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .form-column {
        width: 100%;
    }
}

/* Refresh button (cell 2) and Verify button (cell 4) */
.refresh-captcha-btn, .verify-captcha-btn {
    width: 100%; /* Fill the entire width of the cell */
    height: 100%; /* Fill the entire height of the cell */
    font-size: 1rem; /* Adjust font size for better scaling */
    box-sizing: border-box; /* Include borders in the element's dimensions */
    padding: 0; /* Remove padding for full coverage */
    margin: 0; /* Remove any default margins */
    background-color: var(--accent-color); /* Red button */
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex; /* Ensure proper alignment */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
}

.refresh-captcha-btn:hover, .verify-captcha-btn:hover {
    background-color: #a30000; /* Darker red on hover */
}

/* Global styles for inputs, textareas, and buttons */
input,
textarea,
button,
.contact-form,
.captcha-box,
#captchaImage,
.refresh-captcha-btn,
.verify-captcha-btn {
    border-radius: 8px; /* Apply consistent rounded corners */
    box-sizing: border-box; /* Ensure consistent sizing */
}

/* Contact form */
.contact-form {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px; /* Rounded corners for the form container */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Inputs and textareas */
input,
textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 8px; /* Rounded corners */
    font-size: 1rem;
    box-sizing: border-box;
}

/* Buttons */
button,
.refresh-captcha-btn,
.verify-captcha-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 8px; /* Rounded corners */
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover effect for buttons */
button:hover,
.refresh-captcha-btn:hover,
.verify-captcha-btn:hover {
    background-color: #a30000; /* Darker red on hover */
}

/* Captcha box */
.captcha-box {
    background-color: var(--background-color);
    padding: 1rem;
    border-radius: 8px; /* Rounded corners */
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Captcha image */
#captchaImage {
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px; /* Rounded corners */
    font-family: monospace;
    letter-spacing: 5px;
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder styling */
.placeholder-text {
    font-style: italic;
    color: #777;
}

/* Captcha buttons */
.refresh-captcha-btn,
.verify-captcha-btn {
    width: 100%; /* Fill the entire width of the cell */
    height: 100%; /* Reduce height by 50% */
    font-size: 0.9rem; /* Adjust font size for better scaling */
    box-sizing: border-box; /* Include borders in the element's dimensions */
    padding: 0; /* Remove padding for full coverage */
    margin: 0; /* Remove any default margins */
    background-color: var(--accent-color); /* Red button */
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex; /* Ensure proper alignment */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
}

/* Hover effect for captcha buttons */
.refresh-captcha-btn:hover,
.verify-captcha-btn:hover {
    background-color: #a30000; /* Darker red on hover */
}

/* Message textarea */
textarea {
    resize: none; /* Prevent resizing */
    height: 50%; /* Reduce the height of the message field by 50% */
    min-height: 75px; /* Ensure a minimum height */
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px; /* Rounded corners */
    box-sizing: border-box;
}

/* Add these styles for h1 */
h1 {
    font-size: 2.5rem;
    margin: 1rem 0;
    color: var(--primary-color);
}

.hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Remove duplicate rules and keep only one hamburger menu section */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger-menu div {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger-menu.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active div:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active div:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    #mainNav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        margin: 0; /* Remove margin */
    }

    #mainNav.active ul {
        display: flex;
    }

    #mainNav ul li {
        margin: 0; /* Remove all margins */
        padding: 0.25rem; /* Reduce padding further */
        text-align: center;
        border-bottom: 1px solid #eee;
        line-height: 1; /* Reduce line height */
    }

    #mainNav ul li:last-child {
        border-bottom: none;
    }

    #mainNav ul li a {
        display: block;
        padding: 0.25rem 0; /* Minimal padding */
        line-height: 1.2; /* Tighter line height */
    }
}

/* Add specific styles for the security section */
#security .services-container {
    margin-top: 2rem; /* Add top margin to the container */
}

#security .service-card {
    min-height: 400px; /* Ensure consistent height for security cards */
}

.logo-title-container {
    display: flex;
    align-items: center; /* Vertically center items */
    gap: 1rem; /* Space between logo and title */
    margin-bottom: 2rem;
}

.logo {
    width: 120px;
    height: auto;
    
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.logo-title-container h1 {
    margin: 0; /* Remove default margins */
    font-size: 2rem;
    color: var(--primary-color);
    display: inline; /* Keep text in line */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-title-container {
        flex-direction: row; /* Keep horizontal layout on mobile */
        text-align: left;
        gap: 0.5rem; /* Reduce gap on mobile */
    }

    .logo {
        width: 80px; /* Smaller logo on mobile */
    }

    .logo-title-container h1 {
        font-size: 1.5rem; /* Smaller text on mobile */
    }
}

/* Update the responsive styles */
@media (max-width: 768px) {
    /* Ensure sections have proper spacing */
    .section {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }

    /* Adjust service cards for mobile */
    .service-card {
        flex-basis: 100%; /* Full width on mobile */
        margin-bottom: 2rem; /* Add space between cards */
    }

    /* Ensure container spacing */
    .container {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    /* Fix services container spacing */
    .services-container {
        gap: 2rem;
        margin-bottom: 0; /* Remove bottom margin as cards have their own */
    }

    /* Adjust hero section for mobile */
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }

    /* Fix section titles spacing */
    .section-title {
        margin-bottom: 2rem;
        margin-top: 1rem;
    }

    /* Ensure last service card doesn't stick to next section */
    .services-container:last-child {
        margin-bottom: 2rem;
    }

    /* Add space between sections */
    #services, #security, #about, #contact {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    /* Reduce header height on mobile */
    header {
        height: 50px; /* Slightly smaller on mobile */
    }

    #mainNav ul {
        top: 50px; /* Match header height */
    }

    .header-content {
        padding: 0 0.5rem; /* Smaller padding on mobile */
    }

    /* Adjust main content padding to match new header height */
    main {
        padding-top: 50px;
    }

    /* Adjust menu position for smaller header */
    #mainNav ul {
        top: 50px; /* Match header height */
    }

    /* Add more space between sections */
    .section {
        padding: 3rem 0;
        margin-bottom: 3rem;
    }

    /* Increase gap between service cards */
    .services-container {
        gap: 3rem;
    }

    /* Add more bottom margin to cards */
    .service-card {
        margin-bottom: 3rem;
    }

    /* Ensure sections are clearly separated */
    #services, #security, #about, #contact {
        padding-top: 4rem;
        margin-top: 4rem;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
}

@media (max-width: 768px) {
    /* Header adjustments */
    header {
        padding: 0.5rem 1rem 0.125rem 1rem;
        height: 50px;
    }

    .header-content {
        margin-top: 10px;
    }

    /* Single column layout adjustments */
    .service-card {
        flex-basis: 100%;
        margin-bottom: 1.5rem;
    }

    /* Container width and spacing */
    .section.container {
        width: 90%;
        margin: 0 auto;
        padding: 1rem;
    }

    /* Consistent section spacing */
    .section {
        padding: 2rem 0;
        margin: 1.5rem 0;
    }

    /* Form adjustments */
    .form-row {
        flex-direction: column;
    }

    .form-column {
        width: 100%;
        margin-bottom: 1rem;
    }

    /* Services container in single column */
    .services-container {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* Section separators */
    #services, #security, #about, #contact {
        border-top: 1px solid rgba(0,0,0,0.1);
        padding-top: 2rem;
        margin-top: 2rem;
    }
}

/* Pricing section styles */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    position: relative;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.period {
    font-size: 1rem;
    color: #666;
}

.discount {
    color: var(--accent-color);
    font-weight: bold;
    margin: 1rem 0;
}

.total {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
    }
}