:root {
    --color-primary: #2980b9;
    --color-primary-dark: #1a5276;
    --color-secondary: #27ae60;
    --color-accent: #8e44ad;
    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    --color-background: #ffffff;
    --color-background-alt: #f8f9fa;
    --color-border: #ecf0f1;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

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

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

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

a:hover {
    color: var(--color-primary-dark);
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

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

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

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

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

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

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

.btn-full {
    width: 100%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-text);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-content a {
    color: #3498db;
}

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

.header {
    position: sticky;
    top: 0;
    background-color: var(--color-background);
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-top {
    background-color: #f1c40f;
    padding: 8px 24px;
    text-align: center;
}

.ad-notice {
    font-size: 0.875rem;
    color: var(--color-text);
    font-weight: 500;
}

.nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.logo:hover {
    color: var(--color-primary);
}

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

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition);
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 48px 24px;
    max-width: 700px;
}

.hero-content h1 {
    margin-bottom: 20px;
    color: var(--color-text);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: var(--color-text-light);
}

.intro-section {
    padding: 80px 0;
    background-color: var(--color-background-alt);
}

.intro-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 32px;
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.intro-icon {
    margin-bottom: 20px;
    color: var(--color-primary);
}

.intro-card h3 {
    margin-bottom: 12px;
}

.intro-card p {
    color: var(--color-text-light);
}

.services-preview {
    padding: 80px 0;
}

.cards-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

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

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

.card-body {
    padding: 24px;
}

.card-body h3 {
    margin-bottom: 12px;
}

.card-body p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-cta {
    text-align: center;
}

.about-preview {
    padding: 80px 0;
    background-color: var(--color-background-alt);
}

.about-split {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.about-text .btn {
    margin-top: 16px;
}

.testimonials {
    padding: 80px 0;
}

.testimonial-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: var(--color-background-alt);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
}

.testimonial-card blockquote p {
    font-style: italic;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.testimonial-card cite {
    font-weight: 600;
    color: var(--color-text);
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.cta-box {
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-box p {
    margin-bottom: 32px;
    opacity: 0.9;
}

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

.cta-box .btn-primary:hover {
    background-color: var(--color-background-alt);
}

.page-hero {
    padding: 60px 0;
    background-color: var(--color-background-alt);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--color-text-light);
    font-size: 1.125rem;
}

.services-full {
    padding: 60px 0;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-card-full {
    display: flex;
    gap: 40px;
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex-wrap: wrap;
}

.service-card-full:nth-child(even) {
    flex-direction: row-reverse;
}

.card-image-large {
    flex: 1;
    min-width: 300px;
    min-height: 300px;
}

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

.card-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.card-content h2 {
    margin-bottom: 16px;
}

.card-content > p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

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

.price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

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

.price-note {
    color: var(--color-text-light);
}

.booking-section {
    padding: 80px 0;
    background-color: var(--color-background-alt);
}

.booking-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--color-background);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.booking-card h2 {
    text-align: center;
    margin-bottom: 12px;
}

.booking-card > p {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
}

.story-section {
    padding: 80px 0;
}

.story-block {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-content h2 {
    margin-bottom: 20px;
}

.story-content p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.values-section {
    padding: 80px 0;
    background-color: var(--color-background-alt);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
    text-align: center;
}

.value-card h3 {
    margin-bottom: 16px;
    color: var(--color-primary);
}

.value-card p {
    color: var(--color-text-light);
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

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

.team-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

.team-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-card h3 {
    margin-bottom: 4px;
}

.team-role {
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-card > p:last-child {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.space-section {
    padding: 80px 0;
    background-color: var(--color-background-alt);
}

.space-section .container {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.space-content {
    flex: 1;
    min-width: 300px;
}

.space-content h2 {
    margin-bottom: 20px;
}

.space-content p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.space-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.space-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    padding: 24px;
    background-color: var(--color-background-alt);
    border-radius: var(--radius-md);
}

.info-card h3 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

.info-card p {
    color: var(--color-text-light);
}

.info-note {
    font-size: 0.875rem;
    margin-top: 8px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list span {
    font-weight: 500;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    height: 400px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.map-placeholder p {
    font-weight: 500;
    color: var(--color-text-light);
}

.faq-section {
    padding: 80px 0;
    background-color: var(--color-background-alt);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 24px;
    background-color: var(--color-background);
    border-radius: var(--radius-md);
}

.faq-item h3 {
    margin-bottom: 12px;
    color: var(--color-text);
}

.faq-item p {
    color: var(--color-text-light);
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
}

.thanks-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background-color: var(--color-background-alt);
    border-radius: var(--radius-lg);
}

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

.thanks-card h1 {
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.service-confirm {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.thanks-card p {
    color: var(--color-text-light);
    margin-bottom: 12px;
}

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

.next-steps {
    padding: 80px 0;
    background-color: var(--color-background-alt);
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 48px;
}

.steps-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
    padding: 32px;
    background-color: var(--color-background);
    border-radius: var(--radius-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
}

.step-card h3 {
    margin-bottom: 12px;
}

.step-card p {
    color: var(--color-text-light);
}

.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    margin-bottom: 8px;
}

.legal-updated {
    color: var(--color-text-light);
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-text);
}

.legal-section h3 {
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-section p {
    margin-bottom: 12px;
    color: var(--color-text-light);
}

.legal-section ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
    color: var(--color-text-light);
    list-style: disc;
}

.legal-section address {
    margin-top: 16px;
}

.legal-section address p {
    margin-bottom: 4px;
}

.footer {
    background-color: var(--color-text);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 8px;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #bdc3c7;
}

.footer-section a:hover {
    color: white;
}

.footer-section address p {
    color: #bdc3c7;
}

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

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.875rem;
}

.disclaimer {
    margin-top: 16px;
    font-size: 0.8rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-background);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 50vh;
    }

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

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

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

    .about-split,
    .story-block,
    .space-section .container {
        flex-direction: column;
    }

    .service-card-full,
    .service-card-full:nth-child(even) {
        flex-direction: column;
    }

    .card-content {
        padding: 24px;
    }

    .booking-card {
        padding: 24px;
    }

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

    .footer-grid {
        gap: 32px;
    }

    .footer-section {
        min-width: 100%;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 32px 16px;
    }

    .intro-section,
    .services-preview,
    .about-preview,
    .testimonials,
    .cta-section,
    .services-full,
    .booking-section,
    .story-section,
    .values-section,
    .team-section,
    .space-section,
    .contact-section,
    .faq-section,
    .next-steps {
        padding: 48px 0;
    }

    .intro-card,
    .value-card,
    .step-card {
        padding: 24px;
    }
}
