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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: white;
}

.btn-accept:hover {
    background: #229954;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

.nav-brand a {
    font-weight: 700;
    font-size: 20px;
    color: #2c3e50;
    text-decoration: none;
}

.nav-disclaimer {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 12px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 140px 60px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-offset-content {
    max-width: 580px;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    padding: 8px 18px;
    background: #3498db;
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-asymmetric h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 800;
}

.hero-asymmetric p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: #5a6c7d;
}

.hero-image-overlap {
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    width: 55%;
    max-width: 700px;
    z-index: 1;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #34495e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background: transparent;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-3px);
}

.intro-asymmetric {
    padding: 100px 60px;
    display: flex;
    gap: 80px;
    align-items: center;
    background: white;
}

.intro-block-left {
    flex: 1;
    max-width: 520px;
}

.intro-block-left h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-block-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
}

.intro-block-right {
    flex: 1;
    position: relative;
}

.intro-block-right img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: rotate(-2deg);
    object-fit: cover;
}

.intro-caption {
    margin-top: 16px;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.services-offset {
    padding: 120px 60px;
    background: #f8f9fa;
    position: relative;
}

.services-intro-floating {
    position: absolute;
    top: 60px;
    left: 60px;
    max-width: 420px;
    z-index: 10;
}

.services-intro-floating h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.services-intro-floating p {
    font-size: 17px;
    color: #5a6c7d;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 180px;
    justify-content: flex-end;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card-wide {
    width: calc(50% - 14px);
}

.service-card-tall {
    align-self: flex-start;
}

.service-visual {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #ecf0f1;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.service-capacity {
    display: inline-block;
    padding: 6px 14px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.service-price-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

.price-note {
    font-size: 14px;
    color: #7f8c8d;
}

.btn-select-service {
    padding: 12px 24px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.form-section-diagonal {
    padding: 100px 60px;
    background: linear-gradient(125deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    transform: skewY(-3deg);
    margin: 80px 0;
}

.form-container-offset {
    transform: skewY(3deg);
    max-width: 700px;
    margin: 0 0 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.form-intro p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group input[readonly] {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.btn-submit {
    padding: 16px 32px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.why-section-overlap {
    padding: 100px 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    background: white;
}

.why-content-left {
    flex: 1;
}

.why-content-left h2 {
    font-size: 40px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.why-list {
    list-style: none;
}

.why-list li {
    padding: 16px 0 16px 36px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    color: #5a6c7d;
}

.why-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.why-image-right {
    flex: 1;
}

.why-image-right img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: rotate(2deg);
    object-fit: cover;
}

.footer-asymmetric {
    background: #2c3e50;
    color: white;
    padding: 60px 60px 30px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col-brand {
    flex: 1.5;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 14px;
    color: #ecf0f1;
}

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

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

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

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

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

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.page-hero-offset {
    padding: 160px 60px 80px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.page-hero-content {
    max-width: 800px;
}

.page-hero-content h1 {
    font-size: 52px;
    color: white;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.services-detailed {
    padding: 80px 60px;
    background: white;
}

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

.service-detail-reverse {
    flex-direction: row-reverse;
}

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

.service-detail-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

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

.service-label {
    display: inline-block;
    padding: 6px 14px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: #5a6c7d;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
    line-height: 0.8;
}

.service-price-detail {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 24px;
}

.price-large {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
}

.price-period {
    font-size: 16px;
    color: #7f8c8d;
}

.cta-section-centered {
    padding: 80px 60px;
    background: #f8f9fa;
    text-align: center;
}

.cta-section-centered h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-section-centered p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.about-story {
    padding: 100px 60px;
    background: white;
}

.about-content-offset {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text-block {
    flex: 1;
    max-width: 600px;
}

.about-text-block h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

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

.about-image-overlap img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: rotate(-3deg);
    object-fit: cover;
}

.values-section {
    padding: 100px 60px;
    background: #f8f9fa;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
}

.process-section {
    padding: 100px 60px;
    background: white;
}

.process-intro {
    text-align: center;
    margin-bottom: 60px;
}

.process-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.process-intro p {
    font-size: 18px;
    color: #5a6c7d;
}

.process-steps {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.process-step {
    flex: 1;
    max-width: 250px;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

.team-section-asymmetric {
    padding: 100px 60px;
    background: #f8f9fa;
    display: flex;
    gap: 80px;
    align-items: center;
}

.team-image {
    flex: 1;
}

.team-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: rotate(2deg);
    object-fit: cover;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.sustainability-section {
    padding: 100px 60px;
    background: white;
}

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

.sustainability-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.sustainability-text {
    flex: 2;
}

.sustainability-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.sustainability-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-block {
    background: #e3f2fd;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #1976d2;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #5a6c7d;
}

.contact-layout {
    padding: 80px 60px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    background: white;
}

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

.contact-info-block h2 {
    font-size: 28px;
    margin-bottom: 14px;
    margin-top: 30px;
    color: #2c3e50;
}

.contact-info-block h2:first-child {
    margin-top: 0;
}

.contact-detail {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.contact-email {
    color: #2c3e50;
    font-weight: 600;
}

.contact-note {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

.contact-map-placeholder {
    flex: 1;
}

.contact-map-placeholder img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 60px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.thanks-icon {
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 18px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.thanks-details {
    background: white;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 36px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.thanks-details p {
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 8px;
}

.thanks-details strong {
    color: #2c3e50;
}

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

.btn-primary {
    padding: 14px 32px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

.legal-page {
    padding: 140px 60px 80px;
    background: white;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.legal-container ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 140px 40px 60px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 40px;
    }

    .services-grid-irregular {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 16px;
        padding: 16px 24px;
        top: 10px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-asymmetric h1 {
        font-size: 38px;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .service-card {
        width: 100%;
    }

    .service-card-wide {
        width: 100%;
    }

    .form-section-diagonal {
        padding: 60px 30px;
        transform: none;
    }

    .form-container-offset {
        transform: none;
        padding: 35px;
    }

    .why-section-overlap {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

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

    .service-detail-block {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .service-detail-reverse {
        flex-direction: column;
    }

    .about-content-offset {
        flex-direction: column;
        gap: 40px;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .team-section-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .sustainability-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-layout {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

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

    .legal-page {
        padding: 120px 30px 60px;
    }
}