* {
    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.7;
    color: #2d3436;
    background-color: #ffffff;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #0984e3;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #74b9ff;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

.site-header {
    background-color: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #dfe6e9;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3436;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

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

.main-nav a:hover {
    color: #0984e3;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #636e72;
    padding: 0.4rem 0.8rem;
    background-color: #f1f3f5;
    border-radius: 4px;
}

.hero-section {
    margin-bottom: 4rem;
}

.hero-image {
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-text h1 {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text p {
    color: #ffffff;
    font-size: 1.4rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.intro-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.intro-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.intro-section p {
    font-size: 1.1rem;
    text-align: center;
}

.featured-section {
    padding: 5rem 0;
}

.dark-bg {
    background-color: #2d3436;
    color: #ffffff;
}

.dark-bg h2,
.dark-bg h3,
.dark-bg h4 {
    color: #ffffff;
}

.two-column-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.two-column-layout.reverse {
    flex-direction: row-reverse;
}

.column-text {
    flex: 1;
}

.column-image {
    flex: 1;
}

.column-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.inline-link {
    display: inline-block;
    color: #74b9ff;
    font-weight: 600;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.inline-link:hover {
    transform: translateX(5px);
    color: #0984e3;
}

.services-preview {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    margin-bottom: 1rem;
    color: #2d3436;
}

.card-content p {
    color: #636e72;
    font-size: 0.95rem;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0984e3;
    margin-top: 1rem;
}

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

.btn-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #0984e3;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-large:hover {
    background-color: #74b9ff;
    transform: scale(1.05);
    color: #ffffff;
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: #0984e3;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #74b9ff;
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    border: 2px solid #ffffff;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.story-section {
    padding: 5rem 0;
}

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

.testimonials-section {
    padding: 5rem 0;
}

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

.testimonials-layout {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #74b9ff;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #74b9ff;
}

.reservation-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.reservation-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: #636e72;
}

.reservation-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

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

.btn-submit:hover {
    background-color: #74b9ff;
}

.location-section {
    padding: 5rem 0;
}

.site-footer {
    background-color: #2d3436;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

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

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

.footer-column a {
    color: #b2bec3;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #74b9ff;
}

.footer-column p {
    color: #b2bec3;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #636e72;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #b2bec3;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.page-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.content-section {
    padding: 5rem 0;
}

.image-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.image-section img {
    width: 100%;
    border-radius: 8px;
}

.values-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    color: #0984e3;
    margin-bottom: 1rem;
}

.team-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.cta-section {
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

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

.services-detail {
    padding: 5rem 0;
}

.service-block {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #dfe6e9;
}

.service-block:last-child {
    border-bottom: none;
}

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

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

.service-image-large img {
    width: 100%;
    border-radius: 8px;
}

.service-details {
    flex: 1;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0984e3;
    margin: 1rem 0 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #636e72;
    margin-bottom: 1.5rem;
}

.features-list {
    margin: 1.5rem 0;
}

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

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0984e3;
    font-weight: 700;
}

.note-text {
    font-size: 0.9rem;
    color: #636e72;
    font-style: italic;
    margin-top: 1.5rem;
}

.info-section {
    padding: 5rem 0;
}

.contact-section {
    padding: 5rem 0;
}

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

.contact-info {
    flex: 1;
}

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

.contact-block h3 {
    color: #0984e3;
    margin-bottom: 1rem;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
}

.additional-info {
    padding: 5rem 0;
    text-align: center;
}

.additional-info h2 {
    margin-bottom: 1.5rem;
}

.map-placeholder {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.map-notice {
    text-align: center;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 2px dashed #dfe6e9;
}

.map-notice p {
    margin-bottom: 0.5rem;
}

.thanks-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.thanks-content {
    text-align: center;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    color: #0984e3;
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.thanks-details {
    margin: 2rem 0;
}

.service-selected {
    font-size: 1.1rem;
    padding: 1rem;
    background-color: #e3f2fd;
    border-radius: 6px;
    display: inline-block;
}

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

.next-steps {
    padding: 5rem 0;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-item {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.step-item h3 {
    color: #74b9ff;
    margin-bottom: 1rem;
}

.legal-page {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.legal-page h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-page h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.legal-page ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

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

.last-updated {
    color: #636e72;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

    h2 {
        font-size: 1.6rem;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

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

    .hero-text p {
        font-size: 1rem;
    }

    .two-column-layout,
    .two-column-layout.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

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

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

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