/* Reset and Base Styles */
* {
    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: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

/* Navigation */
.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2c3e50;
}

/* Split Screen Hero */
.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f9f9;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

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

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #1a252f;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #fff;
    color: #2c3e50;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #2c3e50;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #fff;
}

/* Intro Split Section */
.intro-split {
    display: flex;
}

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

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

.intro-content {
    flex: 1;
    padding: 80px 80px;
    background-color: #fff;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* Services Section */
.services-section {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-header p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

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

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

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.select-service {
    padding: 12px 30px;
    background-color: #2c3e50;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1a252f;
}

/* Approach Split Section */
.approach-split {
    display: flex;
}

.approach-content {
    flex: 1;
    padding: 80px 80px;
    background-color: #fff;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

.approach-image img {
    width: 100%;
    height: 100%;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 40px;
    background-color: #2c3e50;
    color: #fff;
}

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 8px;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

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

/* CTA Section */
.cta-section {
    padding: 100px 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

/* Form Section */
.form-section {
    padding: 80px 40px;
    background-color: #fff;
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: #2c3e50;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c3e50;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1a252f;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 40px;
    background-color: #fff9e6;
    border-top: 2px solid #f0e6cc;
    border-bottom: 2px solid #f0e6cc;
}

.disclaimer-section p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* Footer */
.main-footer {
    background-color: #1a252f;
    color: #fff;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #bbb;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section a {
    color: #bbb;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.reference {
    font-size: 12px;
    line-height: 1.6;
}

.reference a {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #555;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #2c3e50;
    color: #fff;
}

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

.btn-reject {
    background-color: #f0f0f0;
    color: #555;
}

.btn-reject:hover {
    background-color: #e0e0e0;
}

.cookie-link {
    color: #2c3e50;
    text-decoration: underline;
    font-size: 14px;
}

/* Page Header */
.page-header {
    padding: 80px 40px 60px;
    background-color: #f9f9f9;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-header p {
    font-size: 18px;
    color: #666;
}

/* Services Detail Split */
.services-detail-split {
    display: flex;
    min-height: 500px;
}

.services-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    padding: 60px 80px;
    background-color: #fff;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.service-detail-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

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

/* About Sections */
.about-split {
    display: flex;
    min-height: 500px;
}

.about-content {
    flex: 1;
    padding: 80px 80px;
    background-color: #fff;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

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

.philosophy-section {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.philosophy-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.philosophy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.philosophy-item {
    flex: 1 1 calc(50% - 20px);
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.values-split {
    display: flex;
}

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

.values-content {
    flex: 1;
    padding: 80px 80px;
    background-color: #fff;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.values-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

.values-image img {
    width: 100%;
    height: 100%;
}

.team-section {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

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

.team-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.commitment-split {
    display: flex;
}

.commitment-content {
    flex: 1;
    padding: 80px 80px;
    background-color: #fff;
}

.commitment-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.commitment-list {
    list-style: none;
    margin-bottom: 40px;
}

.commitment-list li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.commitment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
    font-size: 20px;
}

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

.commitment-image img {
    width: 100%;
    height: 100%;
}

/* Contact Page */
.contact-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.contact-note {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.contact-form-container {
    flex: 1;
}

.contact-form-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

.location-section {
    padding: 80px 40px;
    background-color: #f9f9f9;
    max-width: 1000px;
    margin: 0 auto;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.location-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 40px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #fff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.thanks-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    flex: 1;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-date {
    font-size: 16px;
    color: #888;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.legal-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2c3e50;
    text-decoration: underline;
}

.btn-primary {
    padding: 12px 30px;
    background-color: #2c3e50;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1a252f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .approach-split,
    .services-detail-split,
    .about-split,
    .values-split,
    .commitment-split,
    .contact-split {
        flex-direction: column;
    }

    .services-detail-split.reverse,
    .values-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .approach-content,
    .service-detail-content,
    .about-content,
    .values-content,
    .commitment-content {
        padding: 60px 30px;
    }

    .hero-content h1,
    .page-header h1 {
        font-size: 36px;
    }

    .services-header h2,
    .testimonials-section h2,
    .cta-content h2,
    .philosophy-section h2,
    .team-section h2 {
        font-size: 32px;
    }

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

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

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

    .next-steps {
        flex-direction: column;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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