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

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

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

ul {
    list-style: none;
}

/* 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.1);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #234a24;
}

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c5f2d;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: #2c5f2d;
}

.ad-label {
    background-color: #ecf0f1;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #7f8c8d;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

.hero-content-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-content-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-right {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large {
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

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

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

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

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

.btn-primary-large {
    background-color: #2c5f2d;
    color: #ffffff;
    font-size: 1.1rem;
    padding: 1.1rem 2.5rem;
}

.btn-primary-large:hover {
    background-color: #234a24;
}

/* Intro Section */
.intro-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.split-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.split-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.split-text {
    flex: 1;
    padding: 2rem 0;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #546e7a;
}

/* Services Preview */
.services-preview {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #546e7a;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-image {
    height: 240px;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.service-card p {
    margin: 0 1.5rem 1.5rem;
    color: #546e7a;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5f2d;
    margin: 0 1.5rem 1rem;
}

.service-link {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
    color: #2c5f2d;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #234a24;
}

/* CTA Split Section */
.cta-split-section {
    max-width: 1400px;
    margin: 4rem auto;
}

.split-reverse {
    display: flex;
}

.split-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #2c5f2d;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.split-bg {
    flex: 1;
    background-color: #e0e0e0;
}

.split-bg img {
    width: 100%;
    height: 100%;
}

/* Values Section */
.values-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.value-item p {
    color: #546e7a;
    line-height: 1.8;
}

/* Form Section */
.form-section {
    background-color: #ecf0f1;
    padding: 4rem 2rem;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

.form-info {
    flex: 1;
    padding: 2rem;
}

.form-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2c3e50;
}

.form-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
    font-size: 1.2rem;
}

.form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

.btn-submit:hover {
    background-color: #234a24;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.2rem;
}

.footer-column p {
    line-height: 1.8;
    color: #bdc3c7;
}

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

.footer-column ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(0,0,0,0.2);
    border-radius: 4px;
    font-size: 0.9rem;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #bdc3c7;
}

/* Page Header */
.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
    padding: 4rem 2rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: #ecf0f1;
}

/* Services Detail Pages */
.services-detail {
    padding: 4rem 2rem;
}

.services-detail.alternate {
    background-color: #f8f9fa;
}

.service-detail-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.service-detail-content {
    flex: 1;
    padding: 2rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2c3e50;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.service-pricing {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* CTA Section Centered */
.cta-section-centered {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.cta-section-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-section-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

/* About Page Specific Styles */
.about-intro-split {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.split-content-wide {
    flex: 2;
    padding-right: 2rem;
}

.split-image-narrow {
    flex: 1;
    background-color: #e0e0e0;
}

.split-image-narrow img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.expertise-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.expertise-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.expertise-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.expertise-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.expertise-card p {
    color: #546e7a;
    line-height: 1.8;
}

.mission-split {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.split-reverse-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.values-detail-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.values-detail-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item-detail {
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2c5f2d;
}

.value-item-detail h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item-detail p {
    color: #546e7a;
    line-height: 1.8;
}

.approach-section {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 2rem;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.step {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

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

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step p {
    color: #ecf0f1;
    line-height: 1.8;
}

.partners-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.partners-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.partners-section p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
}

/* Contact Page Specific Styles */
.contact-section {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c5f2d;
}

.contact-item p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
}

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

.contact-image {
    flex: 1;
    background-color: #e0e0e0;
}

.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.location-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.location-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.location-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #546e7a;
}

.location-info {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.location-detail {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.location-detail h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.location-detail p {
    color: #546e7a;
    line-height: 1.8;
}

.visit-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.visit-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.visit-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #546e7a;
    line-height: 1.8;
}

.faq-contact {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

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

.faq-item p {
    color: #546e7a;
    line-height: 1.8;
}

/* Thanks Page Specific Styles */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-container {
    max-width: 900px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

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

.thanks-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-box {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.step-num {
    width: 50px;
    height: 50px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-box p {
    color: #546e7a;
    line-height: 1.6;
}

.thanks-info {
    background-color: #ecf0f1;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-info p {
    color: #546e7a;
    line-height: 1.8;
}

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

/* Legal Pages */
.legal-page {
    padding: 3rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-intro {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #546e7a;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2c5f2d;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-container p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #546e7a;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: #546e7a;
    line-height: 1.8;
}

.legal-container a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #234a24;
}

.legal-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1;
    font-style: italic;
    color: #7f8c8d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ad-label {
        width: 100%;
        text-align: center;
    }

    .hero-split {
        flex-direction: column;
    }

    .split-layout,
    .service-detail-layout,
    .contact-layout,
    .form-container-split,
    .split-reverse,
    .split-reverse-layout {
        flex-direction: column;
    }

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

    .hero-content-left h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

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

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

    .values-container,
    .approach-steps {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}