/* Base Styles and Variables */
:root {
    --primary-color: #4e67eb;
    --secondary-color: #4a3aea;
    --accent-color: #ff6b6b;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-alt: #f8f9fa;
    --border-color: #e6e6e6;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-secondary: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 700;
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 2rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul, ol {
    padding-left: 2rem;
    margin-bottom: 2rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 1.5rem auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.6rem;
    text-transform: capitalize;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    opacity: 0.9;
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    border-radius: 0;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 1rem;
    transition: var(--transition);
}

nav ul li a:hover, 
nav ul li a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

/* Main Content Spacing */
main {
    margin-top: var(--header-height);
    padding-bottom: 5rem;
}

/* Hero Section */
.hero {
    background-color: var(--background-alt);
    padding: 8rem 0;
    text-align: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('images/6.jpg');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero p {
    font-size: 1.8rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Featured Posts Section */
.featured-posts {
    padding: 8rem 0;
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.post-card {
    background: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.post-image {
    height: 220px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 2rem;
}

.post-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.read-more:hover {
    color: var(--secondary-color);
}

.center-btn {
    text-align: center;
    margin-top: 4rem;
}

/* Fun Facts Section */
.fun-facts {
    background-color: var(--background-alt);
    padding: 6rem 0;
    text-align: center;
}

.fact-box {
    background-color: white;
    box-shadow: var(--box-shadow);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin: 2rem auto;
    max-width: 700px;
    display: flex;
    align-items: center;
    text-align: left;
}

.fact-box svg {
    margin-right: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.fact-box p {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.fact-box.fun svg {
    color: var(--accent-color);
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

.cta h2 {
    color: white;
    margin-bottom: 2rem;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.8rem;
}

.cta .btn {
    background: white;
    color: var(--primary-color);
}

.cta .btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Footer Styles */
footer {
    background-color: #2a2a2a;
    color: white;
    padding: 6rem 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 2rem;
    border-radius: 0;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3,
.footer-social h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a,
.footer-legal ul li a {
    color: #cccccc;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-contact svg {
    margin-right: 1rem;
    color: var(--primary-color);
}

.footer-social .social-icons {
    display: flex;
    gap: 1.5rem;
}

.footer-social .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.footer-social .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 1001;
    padding: 2rem;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.cookie-more {
    color: var(--primary-color);
    margin-left: 2rem;
    align-self: center;
}

/* Page Header */
.page-header {
    background-color: var(--background-alt);
    padding: 8rem 0 6rem;
    text-align: center;
}

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

/* About Page Styles */
.about-intro {
    padding: 8rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 3rem;
}

.values {
    background-color: var(--background-alt);
    padding: 8rem 0;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.value-icon {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.team {
    padding: 8rem 0;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 2rem;
    border: 5px solid var(--background-alt);
    transition: var(--transition);
}

.team-member:hover img {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member p {
    margin-bottom: 1.5rem;
}

.team-member .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-member .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--background-alt);
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

.team-member .social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.testimonials {
    background-color: var(--background-alt);
    padding: 8rem 0;
    text-align: center;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    display: none;
}

.testimonial:first-child {
    display: block;
}

.testimonial-content {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-content:before {
    content: '\201C';
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 2rem;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.8rem;
    font-style: italic;
}

.testimonial-author h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.testimonial-author p {
    margin-bottom: 0;
    font-size: 1.4rem;
}

/* Blog Page Styles */
.blog-content {
    padding: 8rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.blog-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.blog-image {
    height: 100%;
}

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

.blog-card-content {
    padding: 3rem;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--text-light);
}

.blog-card h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.newsletter {
    background-color: var(--background-alt);
    padding: 6rem 0;
}

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

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    font-size: 1.6rem;
}

.form-disclaimer {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    color: var(--text-light);
}

/* Services Page Styles */
.services-intro {
    padding: 8rem 0;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.services-main {
    padding: 8rem 0;
    background-color: var(--background-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.service-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 4rem 3rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

.service-icon {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.service-features {
    list-style-type: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.service-features li {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.service-features li:before {
    content: '✓';
    color: var(--success-color);
    position: absolute;
    left: 0;
}

.service-price {
    font-size: 1.8rem;
    margin: 2rem 0;
}

.service-price span {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2.4rem;
}

.additional-services {
    padding: 8rem 0;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    padding: 3rem;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateX(5px);
}

.service-item-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

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

.service-item-content p {
    margin-bottom: 0;
}

.methodology {
    background-color: var(--background-alt);
    padding: 8rem 0;
}

.methodology-steps {
    max-width: 800px;
    margin: 4rem auto 0;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 1rem;
}

.step-content p {
    margin-bottom: 0;
}

.faq {
    padding: 8rem 0;
}

.faq-content {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
}

.faq-item h3 {
    cursor: pointer;
    margin-bottom: 1rem;
    position: relative;
    padding-right: 3rem;
}

.faq-item h3:after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 2.4rem;
    color: var(--primary-color);
}

.faq-item h3.active:after {
    content: '-';
}

.faq-item p {
    display: none;
    margin-bottom: 0;
    padding-left: 2rem;
    border-left: 3px solid var(--primary-color);
}

/* Contact Page Styles */
.contact-content {
    padding: 8rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 5rem;
}

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

.contact-info > p {
    margin-bottom: 4rem;
}

.contact-details {
    margin: 4rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.contact-text p {
    margin-bottom: 0;
}

.social-connect h3 {
    margin-bottom: 1.5rem;
}

.contact-form-container h2 {
    margin-bottom: 3rem;
}

.contact-form {
    background-color: var(--background-alt);
    padding: 4rem;
    border-radius: var(--border-radius);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    font-family: var(--font-primary);
    font-size: 1.6rem;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.form-submit {
    text-align: center;
    margin-top: 3rem;
}

.map-section {
    padding-top: 0;
    padding-bottom: 8rem;
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    background-color: var(--background-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-light);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    position: relative;
    background-color: white;
    max-width: 500px;
    margin: 10vh auto;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.8rem;
    cursor: pointer;
}

.thank-you-message {
    text-align: center;
}

.thank-you-message svg {
    color: var(--success-color);
    margin: 0 auto 2rem;
}

.close-btn {
    margin-top: 2rem;
}

/* Blog Post Styles */
.post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 0;
}

.post-header {
    margin-bottom: 4rem;
}

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.post-featured-image {
    margin: 3rem 0;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.post-body h2 {
    margin-top: 4rem;
}

.post-body h3 {
    margin-top: 3rem;
}

.post-body ul, .post-body ol {
    margin-bottom: 3rem;
}

.post-body li {
    margin-bottom: 1rem;
}

.post-footer {
    margin-top: 6rem;
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tag {
    background-color: var(--background-alt);
    padding: 0.5rem 1.5rem;
    border-radius: 3rem;
    font-size: 1.4rem;
}

.post-share {
    margin-bottom: 4rem;
}

.post-share h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.social-share {
    display: flex;
    gap: 1.5rem;
}

.social-share a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    background-color: var(--background-alt);
    color: var(--text-color);
    transition: var(--transition);
}

.social-share a:hover {
    background-color: var(--primary-color);
    color: white;
}

.author-bio {
    display: flex;
    gap: 2rem;
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 4rem;
}

.author-bio img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 1rem;
}

.author-info p {
    margin-bottom: 0;
}

.related-posts {
    margin-bottom: 4rem;
}

.related-posts h2 {
    margin-bottom: 3rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.related-post img {
    margin-bottom: 1.5rem;
}

.related-post h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
}

.post-nav-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    html {
        font-size: 58%;
    }
    
    .about-content, 
    .services-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .blog-card {
        grid-template-columns: 1fr;
    }
    
    .blog-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 56%;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: calc(100vh - var(--header-height));
        background-color: var(--background-color);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        overflow-y: auto;
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 2rem;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        display: block;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .social-share {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 54%;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero h2 {
        font-size: 2.6rem;
    }
    
    .contact-form {
        padding: 3rem 2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-more {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .post-nav-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}
