/* Reset and Base Styles */
* {
    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-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

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

p {
    margin-bottom: 1rem;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    border-bottom: 1px solid #dee2e6;
}

/* Floating Navigation */
.nav-floating {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Asymmetric Layout */
.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: 5%;
    margin-top: -8%;
}

.hero-content-offset h1 {
    font-size: 4rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

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

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 55%;
    height: 70%;
    z-index: 5;
    background-color: #ecf0f1;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    background-color: #e67e22;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

/* Intro Staggered Section */
.intro-staggered {
    padding: 8rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-block.intro-left {
    flex: 1;
    padding-right: 3rem;
    margin-top: -5rem;
}

.intro-block.intro-right {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.intro-block.intro-right img {
    border-radius: 10px;
}

/* Services Grid Offset */
.services-grid-offset {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.section-header-asymmetric {
    max-width: 500px;
    margin-left: 15%;
    margin-bottom: 4rem;
}

.section-header-asymmetric h2 {
    font-size: 3rem;
}

.section-header-asymmetric p {
    font-size: 1.1rem;
    color: #6c757d;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

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

.card-offset-1 { margin-top: 0; }
.card-offset-2 { margin-top: 3rem; }
.card-offset-3 { margin-top: 1.5rem; }
.card-offset-4 { margin-top: 2.5rem; }
.card-offset-5 { margin-top: 0.5rem; }
.card-offset-6 { margin-top: 2rem; }

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

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem;
    color: #5a6c7d;
    flex-grow: 1;
}

.service-price {
    padding: 1rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e67e22;
}

.btn-select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #34495e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Form Section Overlap */
.form-section-overlap {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(-1deg);
}

.form-container h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.selected-service-info {
    background-color: #e8f5e9;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    color: #2e7d32;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

/* Trust Block */
.trust-block {
    padding: 8rem 2rem;
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.trust-content {
    flex: 1.2;
    padding-left: 5%;
}

.trust-content h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background-color: #e8f5e9;
    color: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.trust-point p {
    font-size: 1.1rem;
    color: #34495e;
}

.trust-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 20px;
    overflow: hidden;
    margin-top: -3rem;
}

.trust-image img {
    width: 100%;
    height: auto;
}

/* Footer Asymmetric */
.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

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

.footer-block h3,
.footer-block h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-block a {
    display: block;
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #e67e22;
}

.footer-block p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    color: #ecf0f1;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #e67e22;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #e67e22;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #d35400;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #ecf0f1;
    border: 2px solid #ecf0f1;
}

.btn-cookie-reject:hover {
    background-color: #34495e;
}

/* Page Hero Offset */
.page-hero-offset {
    padding: 10rem 2rem 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
}

.hero-text-block {
    flex: 1;
    margin-left: 10%;
}

.hero-text-block h1 {
    font-size: 3.5rem;
}

.hero-image-block {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 20px;
    overflow: hidden;
    margin-top: -5rem;
}

.hero-image-block img {
    width: 100%;
    height: auto;
}

/* Story Section */
.story-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    display: flex;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-content-offset {
    flex: 1.3;
    padding-right: 3rem;
}

.story-content-offset h2 {
    margin-bottom: 2rem;
}

.story-image-offset {
    flex: 1;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 4rem;
}

.story-image-offset img {
    border-radius: 10px;
}

/* Values Asymmetric */
.values-asymmetric {
    padding: 8rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.values-asymmetric h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    margin-left: 8%;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-block {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 15px;
}

.value-offset-1 { margin-top: 0; }
.value-offset-2 { margin-top: 4rem; }
.value-offset-3 { margin-top: 2rem; }

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

/* Team Section */
.team-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.team-intro {
    flex: 1;
}

.team-image {
    flex: 1.2;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: -3rem;
}

.team-image img {
    border-radius: 10px;
}

/* Approach Section Offset */
.approach-section-offset {
    padding: 8rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-section-offset h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.approach-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

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

.step-right {
    margin-left: 15%;
}

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

.approach-step div:not(.step-number) {
    flex: 1;
}

/* CTA Section Simple */
.cta-section-simple {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.cta-section-simple h2 {
    font-size: 2.5rem;
    color: #ffffff;
}

.cta-section-simple p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section-simple .cta-primary {
    background-color: #e67e22;
}

.cta-section-simple .cta-primary:hover {
    background-color: #d35400;
}

/* Page Hero Simple */
.page-hero-simple {
    padding: 10rem 2rem 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-simple h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.page-hero-simple p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

/* Services Detail Section */
.services-detail-section {
    padding: 4rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    padding: 3rem;
    border-radius: 20px;
    background-color: #f8f9fa;
}

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

.service-layout-2 {
    flex-direction: row-reverse;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 15px;
    overflow: hidden;
}

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

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.7rem;
    color: #5a6c7d;
}

.btn-detail-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background-color: #34495e;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Pricing Info Section */
.pricing-info-section {
    padding: 4rem 2rem;
    background-color: #fff3e0;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
}

.pricing-info-section h2 {
    margin-bottom: 2rem;
}

.pricing-info-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.pricing-info-content li {
    margin-bottom: 0.7rem;
}

/* Contact Section Asymmetric */
.contact-section-asymmetric {
    padding: 4rem 2rem;
    display: flex;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-offset {
    flex: 1;
    margin-top: 2rem;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h3 {
    color: #e67e22;
    margin-bottom: 0.5rem;
}

.contact-image-offset {
    flex: 1;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: -4rem;
}

.contact-image-offset img {
    border-radius: 10px;
}

/* Contact Approach Section */
.contact-approach-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f8f9fa;
    border-radius: 20px;
}

.contact-approach-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.approach-number {
    width: 50px;
    height: 50px;
    background-color: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* FAQ Section Offset */
.faq-section-offset {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-section-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    margin-left: 5%;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #e67e22;
}

.faq-item:nth-child(even) {
    margin-left: 10%;
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #5a6c7d;
}

/* Thanks Section */
.thanks-section {
    padding: 8rem 2rem 4rem;
    display: flex;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
}

.thanks-content {
    flex: 1.2;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #e8f5e9;
    color: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thanks-service-info {
    background-color: #e3f2fd;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.selected-service-highlight {
    color: #1565c0;
    font-size: 1.1rem;
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.next-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.next-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.step-icon {
    width: 35px;
    height: 35px;
    background-color: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 0.8rem 2rem;
    background-color: #e67e22;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: #34495e;
    border: 2px solid #34495e;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 20px;
    overflow: hidden;
    margin-top: -3rem;
}

.thanks-image img {
    width: 100%;
    height: auto;
}

/* Legal Page */
.legal-page {
    padding: 8rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    margin-bottom: 2rem;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

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

.legal-content a {
    color: #e67e22;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 8rem 2rem 4rem;
    }

    .hero-content-offset {
        margin-left: 0;
        margin-top: 0;
        text-align: center;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        margin-top: 2rem;
    }

    .intro-staggered,
    .trust-block,
    .story-section,
    .team-section,
    .contact-section-asymmetric,
    .thanks-section {
        flex-direction: column;
    }

    .intro-block.intro-left,
    .intro-block.intro-right {
        margin-top: 0;
    }

    .service-detail {
        flex-direction: column !important;
    }

    .nav-floating {
        position: relative;
        top: 0;
        right: 0;
        border-radius: 0;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .page-hero-offset {
        flex-direction: column;
        padding-top: 8rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-cards {
        flex-direction: column;
    }

    .service-card {
        margin-top: 0 !important;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-block {
        margin-top: 0 !important;
    }

    .approach-step {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-item:nth-child(even) {
        margin-left: 0;
    }
}