* {
    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: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.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: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2a9d8f;
    color: #ffffff;
}

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 24px;
    color: #2a9d8f;
    font-weight: 700;
}

.ad-disclosure {
    background-color: #fff3cd;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    color: #856404;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #2a9d8f;
}

.hero-split {
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-text {
    flex: 1;
    padding: 60px;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a5568;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #2a9d8f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.intro-section,
.about-intro,
.values-section {
    padding: 80px 20px;
}

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

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.split-text h4 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #2a9d8f;
}

.split-text p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #4a5568;
}

.split-image {
    flex: 1;
    background-color: #e8e8e8;
}

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.services-overview {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header-center h2,
.section-header-center h3 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 18px;
    color: #4a5568;
}

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

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-image {
    background-color: #e8e8e8;
    height: 250px;
    overflow: hidden;
}

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

.service-info {
    padding: 25px;
}

.service-info h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2a9d8f;
    margin: 15px 0;
}

.btn-select {
    width: 100%;
    padding: 12px;
    background-color: #2a9d8f;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #238276;
}

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

.split-form {
    flex: 1;
}

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

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

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

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

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

.form-group input[readonly] {
    background-color: #e8e8e8;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #2a9d8f;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 80px 20px;
    background-color: #2a9d8f;
    color: #ffffff;
}

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

.trust-content h3 {
    font-size: 36px;
    margin-bottom: 40px;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

.page-hero {
    background-color: #2a9d8f;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
}

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

.service-detail-item {
    margin-bottom: 60px;
}

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

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2a9d8f;
    font-weight: 700;
}

.contact-section {
    padding: 60px 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2a9d8f;
}

.info-item p {
    color: #4a5568;
}

.map-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.map-placeholder {
    max-width: 1000px;
    margin: 30px auto;
    height: 400px;
    background-color: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #4a5568;
    font-size: 18px;
}

.faq-section {
    padding: 60px 20px;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    color: #4a5568;
}

.team-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

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

.team-member {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
}

.member-info h4 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.member-info p:first-of-type {
    color: #2a9d8f;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-info p:last-of-type {
    color: #4a5568;
}

.cta-section,
.booking-cta {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.cta-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    min-height: 500px;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #4a5568;
}

.service-confirmation {
    font-weight: 700;
    color: #2a9d8f;
    font-size: 20px;
}

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

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2a9d8f;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #ffffff;
    color: #2a9d8f;
    border: 2px solid #2a9d8f;
}

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

.next-steps {
    padding: 60px 20px;
}

.steps-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2a9d8f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-item p {
    color: #4a5568;
}

.legal-page {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2a9d8f;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-content p {
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.8;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2a9d8f;
}

.footer-section p,
.footer-section a {
    color: #cbd5e0;
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    font-size: 13px;
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #cbd5e0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-content,
    .split-layout {
        flex-direction: column;
    }

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

    .hero-text,
    .split-text,
    .split-image,
    .split-form {
        padding: 30px 20px;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .section-header-center h2,
    .section-header-center h3 {
        font-size: 28px;
    }

    .trust-stats {
        flex-direction: column;
    }
}