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

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

.ad-disclosure {
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    max-width: 90%;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #2c2c2c;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8B7355;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #2c2c2c;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        border-radius: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text-block {
    max-width: 600px;
    margin-left: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c2c2c;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    border-radius: 8px 0 0 8px;
    z-index: 1;
}

.cta-primary {
    display: inline-block;
    background-color: #8B7355;
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #6D5E52;
}

.intro-offset {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-left {
    flex: 1;
}

.intro-left img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-right {
    flex: 1;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.intro-right p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.services-cards-asymmetric {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 20px;
}

.section-header-offset {
    margin-left: 80px;
    margin-bottom: 60px;
    max-width: 700px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.section-header-offset p {
    font-size: 18px;
    color: #666;
}

.cards-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 350px;
}

.card-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
}

.card-small {
    flex: 1 1 calc(40% - 15px);
    min-width: 280px;
}

.card-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.card-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: #2c2c2c;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #8B7355;
}

.form-section-offset {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 20px;
}

.form-container-asymmetric {
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-left: 100px;
    max-width: 700px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.form-intro p {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B7355;
}

.btn-submit {
    background-color: #8B7355;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #6D5E52;
}

.philosophy-overlap {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
    position: relative;
}

.philosophy-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-image img {
    opacity: 0;
    width: 100%;
    height: 100%;
}

.philosophy-text {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.philosophy-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.philosophy-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.link-inline {
    color: #8B7355;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-inline:hover {
    color: #6D5E52;
}

.footer-asymmetric {
    background-color: #2c2c2c;
    color: white;
    padding: 80px 20px 30px;
    margin-top: 120px;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #555;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #8B7355;
    color: white;
}

.btn-accept:hover {
    background-color: #6D5E52;
}

.btn-reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.btn-reject:hover {
    background-color: #ccc;
}

.about-hero-offset {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 20px 80px;
}

.about-content-block {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-content-block h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.about-content-block p {
    font-size: 20px;
    color: #666;
}

.about-hero-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.about-hero-image img {
    opacity: 0;
    width: 100%;
    height: 100%;
}

.story-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-content {
    flex: 1.2;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.story-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.story-image-overlap {
    flex: 0.8;
}

.story-image-overlap img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-asymmetric {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 20px;
}

.value-block {
    background: white;
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-offset-left {
    margin-left: 0;
    margin-right: 150px;
}

.value-offset-right {
    margin-left: 150px;
    margin-right: 0;
}

.value-center {
    margin-left: 80px;
    margin-right: 80px;
}

.value-block h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.value-block p {
    font-size: 17px;
    color: #555;
}

.team-section {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 20px;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c2c2c;
}

.team-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.team-member {
    max-width: 300px;
}

.member-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.member-image img {
    opacity: 0;
    width: 100%;
    height: 100%;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.team-member p {
    font-size: 15px;
    color: #666;
}

.process-section-offset {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 20px;
}

.process-section-offset h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c2c2c;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.step-left {
    margin-right: 100px;
}

.step-right {
    margin-left: 100px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #8B7355;
    opacity: 0.3;
    min-width: 80px;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.step-item p {
    font-size: 16px;
    color: #666;
}

.cta-section-asymmetric {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 20px;
}

.cta-content-block {
    background: linear-gradient(135deg, #8B7355 0%, #6D5E52 100%);
    padding: 80px;
    border-radius: 8px;
    text-align: center;
    color: white;
    margin-left: 80px;
}

.cta-content-block h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content-block p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-content-block .cta-primary {
    background-color: white;
    color: #8B7355;
}

.cta-content-block .cta-primary:hover {
    background-color: #f5f5f5;
}

.services-hero {
    padding: 140px 20px 80px;
    text-align: center;
    background: linear-gradient(180deg, #f5f5f5 0%, white 100%);
}

.services-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.services-hero p {
    font-size: 20px;
    color: #666;
}

.services-detailed {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.service-detail-item {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.service-layout-left {
    flex-direction: row;
}

.service-layout-right {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
    opacity: 0;
    width: 100%;
    height: 100%;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.service-detail-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.price-display {
    margin: 30px 0;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #8B7355;
}

.contact-hero {
    padding: 140px 20px 80px;
    text-align: center;
    background: linear-gradient(180deg, #f5f5f5 0%, white 100%);
}

.contact-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.contact-hero p {
    font-size: 20px;
    color: #666;
}

.contact-content-offset {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c2c2c;
}

.info-item {
    margin-bottom: 40px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.info-item .note {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
    font-style: italic;
}

.contact-image-overlap {
    flex: 1;
}

.contact-image-overlap img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-process {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.contact-process h2 {
    font-size: 36px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c2c2c;
}

.process-flow {
    display: flex;
    gap: 40px;
}

.flow-step {
    flex: 1;
    text-align: center;
}

.flow-icon {
    width: 80px;
    height: 80px;
    background-color: #8B7355;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.flow-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.flow-step p {
    font-size: 15px;
    color: #666;
}

.contact-map-placeholder {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.map-info {
    background-color: #f5f5f5;
    padding: 80px;
    border-radius: 8px;
    text-align: center;
}

.map-info p {
    font-size: 18px;
    color: #666;
}

.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #8B7355;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.thanks-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

.next-steps {
    text-align: left;
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c2c2c;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8B7355;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    cursor: pointer;
}

.btn-primary {
    background-color: #8B7355;
    color: white;
}

.btn-primary:hover {
    background-color: #6D5E52;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.btn-secondary:hover {
    background-color: #ccc;
}

.legal-content {
    max-width: 900px;
    margin: 140px auto 80px;
    padding: 0 20px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-update {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background-color: #f5f5f5;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    font-weight: 600;
    color: #2c2c2c;
}

.cookie-table td {
    font-size: 15px;
    color: #555;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
        border-radius: 8px;
        margin-top: 40px;
    }

    .hero-text-block {
        margin: 0 auto;
    }

    .intro-offset,
    .story-section,
    .contact-content-offset,
    .philosophy-overlap,
    .service-detail-item {
        flex-direction: column;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .value-offset-left,
    .value-offset-right,
    .value-center {
        margin-left: 0;
        margin-right: 0;
    }

    .step-left,
    .step-right {
        margin-left: 0;
        margin-right: 0;
    }

    .form-container-asymmetric,
    .cta-content-block {
        margin-left: 0;
    }

    .team-grid,
    .process-flow {
        flex-direction: column;
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cards-grid-irregular {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 32px;
    }

    .hero-text-block {
        padding: 40px;
    }

    .intro-right h2,
    .story-content h2,
    .section-header-offset h2,
    .form-intro h2,
    .philosophy-text h2,
    .contact-info-block h2,
    .service-detail-content h2 {
        font-size: 28px;
    }

    .services-hero h1,
    .about-content-block h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .team-section h2,
    .process-section-offset h2,
    .cta-content-block h2,
    .contact-process h2 {
        font-size: 32px;
    }

    .legal-content h1 {
        font-size: 32px;
    }

    .form-container-asymmetric,
    .cta-content-block {
        padding: 40px;
    }
}