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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #3498db;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-cookie.secondary {
    background: transparent;
    border: 2px solid #ffffff;
}

.btn-cookie.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navigation {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-left {
    padding: 60px;
    background: #f8f9fa;
}

.split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

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

.cta-secondary:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

.info-split {
    display: flex;
}

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

.content-block {
    padding: 60px;
}

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

.content-block p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
}

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.link-arrow:hover {
    text-decoration: underline;
}

.feature-grid {
    padding: 80px 20px;
    background: #ffffff;
}

.feature-grid h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.features-row {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.feature-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
}

.feature-icon {
    color: #3498db;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.feature-card p {
    color: #555;
    font-size: 15px;
}

.testimonial-split {
    display: flex;
}

.testimonial-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

blockquote {
    border-left: 4px solid #3498db;
    padding-left: 24px;
}

blockquote p {
    font-size: 18px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 12px;
}

cite {
    font-style: normal;
    color: #7f8c8d;
    font-size: 14px;
}

.process-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.process-split {
    display: flex;
    gap: 30px;
}

.process-item {
    flex: 1;
    text-align: center;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.process-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-item p {
    color: #555;
    font-size: 15px;
}

.services-preview-split {
    display: flex;
}

.services-content {
    padding: 60px;
}

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

.service-item-inline {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ecf0f1;
}

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

.service-item-inline h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.service-item-inline p {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
}

.price-tag {
    display: inline-block;
    font-weight: 700;
    color: #3498db;
    font-size: 18px;
}

.booking-section {
    padding: 80px 20px;
    background: #ffffff;
}

.booking-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.booking-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.booking-left p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.trust-signals {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item svg {
    color: #27ae60;
}

.trust-item span {
    font-size: 15px;
    color: #2c3e50;
}

.booking-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.location-split {
    display: flex;
}

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

.location-content {
    padding: 60px;
}

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

.location-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #ecf0f1;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-left: 4px solid #e74c3c;
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.disclaimer-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 18px;
}

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

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

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

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

.page-hero-split {
    display: flex;
    min-height: 400px;
}

.page-header {
    background: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

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

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

.about-content-split {
    display: flex;
}

.values-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.values-split {
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.mission-split {
    display: flex;
}

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

.mission-content {
    padding: 60px;
}

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

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

.team-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

.team-split {
    display: flex;
    gap: 40px;
}

.team-member {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.member-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.member-info p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.cta-section {
    padding: 80px 20px;
    background: #3498db;
    color: #ffffff;
}

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content-centered p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.services-grid {
    padding: 60px 20px;
}

.service-card-split {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.service-content {
    flex: 1;
}

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

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

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    color: #2c3e50;
    font-size: 15px;
}

.service-features li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: 700;
    margin-right: 8px;
}

.price-block {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
}

.btn-select-service {
    padding: 12px 24px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.included-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.included-grid {
    display: flex;
    gap: 40px;
}

.included-item {
    flex: 1;
    text-align: center;
}

.included-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.cta-section-alt {
    padding: 80px 20px;
    background: #ffffff;
}

.cta-split {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.cta-left p {
    font-size: 16px;
    color: #555;
}

.cta-right {
    display: flex;
    gap: 16px;
}

.contact-split {
    display: flex;
    margin: 60px 0;
}

.contact-info {
    padding: 60px;
}

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

.contact-block {
    margin-bottom: 30px;
}

.contact-block h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

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

.locations-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.locations-grid {
    display: flex;
    gap: 40px;
}

.location-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.location-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.location-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.location-hours {
    color: #7f8c8d;
    font-size: 14px;
    margin-top: 12px;
}

.info-section {
    padding: 80px 20px;
}

.info-split {
    display: flex;
    gap: 60px;
}

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

.info-left h2,
.info-right h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.info-left p,
.info-right p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.8;
}

.faq-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.thanks-section {
    padding: 100px 20px;
    background: #f8f9fa;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    color: #27ae60;
    margin-bottom: 30px;
}

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

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.thanks-details {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #3498db;
}

.thanks-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: left;
    margin-bottom: 40px;
}

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

.thanks-info ul {
    list-style: none;
}

.thanks-info li {
    padding: 12px 0;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.thanks-info li:before {
    content: "→ ";
    color: #3498db;
    font-weight: 700;
    margin-right: 8px;
}

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

.next-steps-section {
    padding: 80px 20px;
}

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

.next-steps-grid {
    display: flex;
    gap: 40px;
}

.next-step-card {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

.next-step-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-page {
    padding: 60px 20px;
}

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

.updated {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 40px;
}

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

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

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

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

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 20px;
}

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

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
    font-size: 15px;
}

@media (max-width: 768px) {
    .hero-split,
    .info-split,
    .testimonial-split,
    .services-preview-split,
    .location-split,
    .page-hero-split,
    .about-content-split,
    .mission-split,
    .contact-split,
    .service-card-split {
        flex-direction: column;
    }

    .info-split.reverse,
    .location-split.reverse,
    .mission-split.reverse,
    .service-card-split.reverse {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .content-block,
    .testimonial-content,
    .services-content,
    .location-content,
    .mission-content,
    .contact-info {
        padding: 40px 20px;
    }

    .features-row,
    .process-split,
    .values-split,
    .team-split,
    .included-grid,
    .locations-grid,
    .next-steps-grid {
        flex-direction: column;
    }

    .booking-split,
    .info-split,
    .cta-split {
        flex-direction: column;
        gap: 30px;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;
        margin-top: 20px;
        justify-content: center;
    }

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

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

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

    .cta-right {
        flex-direction: column;
        width: 100%;
    }

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

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