* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.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;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #357abd;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #666;
}

.btn-reject:hover {
    border-color: #999;
    background-color: rgba(255, 255, 255, 0.05);
}

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4a90e2;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #4a90e2;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #357abd;
}

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

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

.split-layout.reverse {
    flex-direction: row-reverse;
}

.content-left,
.content-right {
    flex: 1;
}

.content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.content-left p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.services-highlight {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.services-highlight h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 1.5rem;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #4a90e2;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #4a90e2;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #4a90e2;
    color: #ffffff;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-form label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

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

.btn-submit:hover {
    background-color: #357abd;
}

.testimonial-inline {
    padding: 4rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.testimonial-inline blockquote {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-inline cite {
    font-size: 1.1rem;
    font-style: normal;
    color: #95a5a6;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #bbb;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #4a90e2;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #777;
    font-size: 0.9rem;
}

.page-header {
    padding: 5rem 2rem 3rem;
    background-color: #f8f9fa;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

.services-detailed {
    padding: 3rem 2rem;
    background-color: #ffffff;
}

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

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

.service-block-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-block-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-block-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.features-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}

.pricing-info {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.price-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.price-value {
    font-size: 1.8rem;
    color: #4a90e2;
    font-weight: 700;
}

.cta-booking {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-booking h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-booking p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.about-hero {
    display: flex;
    min-height: 70vh;
}

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

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.7;
    max-width: 550px;
}

.about-hero-image {
    flex: 1;
    overflow: hidden;
}

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

.story-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.story-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.story-container p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

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

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

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

.team-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.philosophy-section {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.philosophy-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.philosophy-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #ecf0f1;
}

.contact-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.info-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-form-wrapper {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.thanks-page {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

.legal-content ul li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

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

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

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

    .cookie-actions {
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

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

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

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

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

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