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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: #34495e;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #ffffff;
    list-style: none;
    padding: 80px 30px 30px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li a {
    display: block;
    font-size: 1.125rem;
    padding: 0.5rem 0;
}

.nav-menu li a.active {
    color: #34495e;
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf0 100%);
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Page Hero */
.page-hero {
    padding: 3rem 0 2rem;
    background-color: #f9fafb;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero .lead {
    font-size: 1.125rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #34495e;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-outline {
    background-color: transparent;
    color: #2c3e50;
    border: 1px solid #d0d0d0;
}

.btn-outline:hover {
    background-color: #f5f5f5;
    color: #2c3e50;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.alt-bg {
    background-color: #f9fafb;
}

/* Content Blocks */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* Feature Cards */
.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.feature-icon img {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* Collections */
.collection-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.collection-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.collection-visual {
    width: 100%;
}

.collection-visual img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.collection-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.text-link {
    color: #2c3e50;
    font-weight: 600;
    text-decoration: underline;
}

/* Stats */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1 1 140px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #2c3e50;
}

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

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #5a6c7d;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2c3e50;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
}

.process-step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

/* Values Section */
.values-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-block {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-block h3 {
    margin-bottom: 1rem;
}

/* Knowledge Section */
.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.knowledge-card {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.knowledge-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c3e50;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    line-height: 1.8;
}

/* Services/Collections */
.services-intro {
    padding: 2rem 0;
}

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

.intro-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.benefit-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Comparison Section */
.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comparison-column h3 {
    margin-bottom: 1rem;
}

.styled-list {
    list-style: none;
    margin: 1rem 0;
}

.styled-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.styled-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
}

/* Steps Grid */
.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #2c3e50;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

.info-item p {
    line-height: 1.6;
}

/* Directions */
.directions-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.direction-block {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.direction-block h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

/* Company Info */
.company-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item h3 {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

/* Visit Info */
.visit-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visit-card {
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.visit-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Neighborhood */
.neighborhood-section {
    background-color: #f9fafb;
}

.section-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    color: #5a6c7d;
}

.neighborhood-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.neighborhood-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.neighborhood-item h3 {
    margin-bottom: 1rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.next-steps {
    background-color: #f9fafb;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
}

.timeline-year {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    width: 80px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Philosophy Detail */
.philosophy-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.philosophy-item h3 {
    margin-bottom: 1rem;
}

.philosophy-item p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Team */
.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.member-role {
    font-size: 0.875rem;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.team-member h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Values List */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.value-item h3 {
    margin-bottom: 1rem;
}

/* Industry Insight */
.insight-content {
    max-width: 800px;
    margin: 0 auto;
}

.insight-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Trust Section */
.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.trust-item h3 {
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.cta-section h2 {
    color: #ffffff;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Legal Content */
.legal-content {
    padding: 2rem 0 4rem;
}

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

.legal-text h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.legal-text h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-text ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.legal-text ul li {
    margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #b8c5d6;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: #b8c5d6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #5a6c7d;
    line-height: 1;
}

.modal-body {
    padding: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    gap: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.cookie-option p {
    color: #5a6c7d;
    font-size: 0.875rem;
    margin-left: 2rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

/* Story Section */
.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    /* Typography */
    .hero h1 {
        font-size: 3rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    section h2 {
        font-size: 2.5rem;
    }

    /* Navigation */
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
        gap: 2rem;
    }

    /* Feature Cards */
    .feature-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    /* Collections */
    .collection-item {
        flex-direction: row;
        align-items: center;
    }

    .collection-item.reverse {
        flex-direction: row-reverse;
    }

    .collection-visual {
        flex: 0 0 40%;
    }

    .collection-info {
        flex: 1;
    }

    /* Testimonials */
    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    /* Process Steps */
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 1rem);
    }

    /* Values */
    .values-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-block {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    /* Knowledge Grid */
    .knowledge-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .knowledge-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    /* Services */
    .service-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    /* Benefits */
    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 1rem);
    }

    /* Comparison */
    .comparison-content {
        flex-direction: row;
    }

    .comparison-column {
        flex: 1;
    }

    /* Steps Grid */
    .steps-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-item {
        flex: 1 1 calc(50% - 1rem);
    }

    /* Contact Grid */
    .contact-grid {
        flex-direction: row;
    }

    .contact-block {
        flex: 1;
    }

    /* Directions */
    .directions-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .direction-block {
        flex: 1 1 calc(50% - 1rem);
    }

    /* Company Details */
    .company-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .detail-item {
        flex: 1 1 calc(33.333% - 1rem);
    }

    /* Visit Grid */
    .visit-grid {
        flex-direction: row;
    }

    .visit-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    /* Neighborhood */
    .neighborhood-grid {
        flex-direction: row;
    }

    .neighborhood-item {
        flex: 1;
    }

    /* Thank You Actions */
    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    /* Team Grid */
    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

    /* Values List */
    .values-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 1rem);
    }

    /* Trust Grid */
    .trust-grid {
        flex-direction: row;
    }

    .trust-item {
        flex: 1;
    }

    /* Philosophy Blocks */
    .philosophy-blocks {
        gap: 2rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    /* Cookie Banner */
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-actions {
        flex-wrap: nowrap;
    }
}

@media (min-width: 1024px) {
    .service-card {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .process-step {
        flex: 1 1 calc(25% - 1.5rem);
    }
}