* {
    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: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    display: none;
    z-index: 10000;
}

.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;
    font-size: 0.95rem;
}

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

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

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

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

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

.hero-text {
    flex: 1;
    padding: 4rem 2rem 4rem 6rem;
    background-color: #f8f9fa;
}

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

.hero-text p {
    font-size: 1.2rem;
    color: #576574;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

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

.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-image {
    flex: 1;
    background-color: #dfe6e9;
    overflow: hidden;
}

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

.intro-content {
    flex: 1;
    padding: 4rem;
}

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

.intro-content p {
    font-size: 1.1rem;
    color: #576574;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

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

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

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #dfe6e9;
}

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

.service-card p {
    padding: 0 1.5rem;
    color: #576574;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-card .price {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: #3498db;
    padding: 1rem 1.5rem 1.5rem;
}

.services-cta {
    margin-top: 2rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.testimonials-split {
    display: flex;
    align-items: stretch;
}

.testimonial-content {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
}

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

.testimonial-content blockquote {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid #3498db;
}

.testimonial-content blockquote p {
    font-size: 1.1rem;
    color: #576574;
    font-style: italic;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.testimonial-content cite {
    display: block;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: normal;
}

.testimonial-image {
    flex: 1;
    background-color: #dfe6e9;
    overflow: hidden;
}

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

.booking-section {
    padding: 5rem 2rem;
    background-color: #ecf0f1;
}

.booking-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.booking-info {
    flex: 1;
}

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

.booking-info p {
    font-size: 1.1rem;
    color: #576574;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.booking-benefits {
    list-style: none;
    margin-top: 2rem;
}

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

.booking-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

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

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

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

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

.trust-content p {
    font-size: 1.05rem;
    color: #576574;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

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

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

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

.footer-section p {
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

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

.page-hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #576574;
    max-width: 700px;
    margin: 0 auto;
}

.about-split,
.philosophy-split,
.values-split {
    display: flex;
    align-items: stretch;
}

.about-content,
.philosophy-content,
.values-content {
    flex: 1;
    padding: 4rem;
}

.about-content h2,
.philosophy-content h2,
.values-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-content p,
.philosophy-content p {
    font-size: 1.1rem;
    color: #576574;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-image,
.philosophy-image,
.values-image {
    flex: 1;
    background-color: #dfe6e9;
    overflow: hidden;
}

.about-image img,
.philosophy-image img,
.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-split {
    background-color: #f8f9fa;
}

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

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

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

.team-member {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-member p {
    color: #576574;
    line-height: 1.7;
}

.values-list {
    list-style: none;
    margin-top: 1.5rem;
}

.values-list li {
    padding: 1rem 0;
    color: #576574;
    line-height: 1.7;
}

.values-list strong {
    color: #2c3e50;
}

.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #3498db;
    color: #ffffff;
}

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

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

.cta-section .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-section .cta-primary:hover {
    background-color: #ecf0f1;
}

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

.service-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

.service-image {
    flex: 1;
    background-color: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-info {
    flex: 1;
}

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

.service-duration {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1.05rem;
    color: #576574;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.service-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #576574;
}

.service-highlights li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.service-price {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.btn-book {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

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

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

.contact-split {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-info {
    flex: 1;
}

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

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-detail p {
    color: #576574;
    line-height: 1.8;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-note p {
    color: #576574;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background-color: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

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

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

.direction-item p {
    color: #576574;
    line-height: 1.7;
}

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

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

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

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

.faq-item p {
    color: #576574;
    line-height: 1.7;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

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

.thanks-message {
    font-size: 1.2rem;
    color: #576574;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.thanks-details h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-steps {
    padding-left: 1.5rem;
}

.thanks-steps li {
    padding: 0.5rem 0;
    color: #576574;
    line-height: 1.7;
}

.thanks-info {
    text-align: left;
    padding: 1.5rem;
    background-color: #fff3cd;
    border-radius: 6px;
    margin-bottom: 3rem;
}

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

.thanks-info p {
    color: #576574;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.legal-updated {
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-style: italic;
}

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

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

.legal-page p {
    color: #576574;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-page ul li {
    color: #576574;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .testimonials-split,
    .about-split,
    .philosophy-split,
    .values-split,
    .contact-split,
    .service-detail {
        flex-direction: column;
    }

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

    .hero-text {
        padding: 3rem 2rem;
    }

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

    .booking-container {
        flex-direction: column;
    }

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

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

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

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