* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid #e9ecef;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

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

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

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #566573;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

.split-layout {
    display: flex;
    align-items: center;
    gap: 0;
}

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

.content-block {
    flex: 1;
    padding: 80px 60px;
}

.content-block h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.content-block h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #34495e;
}

.content-block p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #566573;
}

.image-block {
    flex: 1;
    min-height: 500px;
    background-color: #d5dce0;
    overflow: hidden;
}

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

.story-section {
    background-color: #ffffff;
}

.insight-section {
    background-color: #f8f9fa;
}

.trust-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.centered-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.centered-content p {
    font-size: 1.15rem;
    color: #566573;
    line-height: 1.8;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 1.4rem;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 25px 15px;
    color: #566573;
    font-size: 1rem;
}

.service-detail {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.testimonials-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.testimonial-block {
    flex: 1;
    padding: 40px;
}

.testimonial-block blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-block cite {
    display: block;
    font-style: normal;
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 600;
}

.pricing-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 45px 35px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.featured {
    background-color: #fff8f3;
    border-color: #e67e22;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.pricing-card.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 30px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 35px;
}

.pricing-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    color: #566573;
    font-size: 1rem;
}

.select-service {
    width: 100%;
    padding: 14px 28px;
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.form-block {
    flex: 1;
    padding: 40px;
}

.selected-service-display {
    background-color: #fff8f3;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    border-left: 4px solid #e67e22;
    font-weight: 600;
    color: #d35400;
    display: none;
}

.selected-service-display.visible {
    display: block;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

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

.disclaimer {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

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

.footer-column ul li a:hover {
    color: #e67e22;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #bdc3c7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 25px 30px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-btn.accept {
    background-color: #e67e22;
    color: #ffffff;
}

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

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

.cookie-btn.reject:hover {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.page-header {
    padding: 100px 60px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

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

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

.about-intro {
    background-color: #ffffff;
}

.values-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-card p {
    color: #566573;
    line-height: 1.7;
}

.team-section {
    background-color: #ffffff;
}

.approach-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

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

.process-step {
    flex: 1;
    min-width: 240px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-step p {
    color: #566573;
    line-height: 1.7;
}

.commitment-section {
    background-color: #ffffff;
}

.commitment-list {
    list-style: none;
    margin-top: 25px;
}

.commitment-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #566573;
    font-size: 1.05rem;
}

.commitment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: 700;
    font-size: 1.2rem;
}

.services-detail {
    background-color: #ffffff;
}

.services-detail.alt {
    background-color: #f8f9fa;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e67e22;
    margin-top: 30px;
    margin-bottom: 25px;
}

.cta-section {
    padding: 100px 60px;
    background-color: #2c3e50;
}

.cta-section .centered-content h2 {
    color: #ffffff;
}

.cta-section .centered-content p {
    color: #ecf0f1;
}

.contact-content {
    background-color: #ffffff;
}

.contact-info-block {
    margin-bottom: 35px;
}

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

.contact-info-block p {
    color: #566573;
    line-height: 1.8;
}

.access-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.visit-section {
    background-color: #ffffff;
}

.thanks-section {
    padding: 120px 60px;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #34495e;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #566573;
    line-height: 1.8;
}

.next-steps {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.step-item {
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    color: #566573;
    line-height: 1.7;
}

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

.step-item strong {
    color: #e67e22;
    display: block;
    margin-bottom: 8px;
}

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

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

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #34495e;
}

.legal-section p {
    margin-bottom: 15px;
    color: #566573;
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section ul li {
    margin-bottom: 10px;
    color: #566573;
    line-height: 1.7;
}

.legal-section a {
    color: #e67e22;
    text-decoration: none;
}

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

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 60px 30px;
    }

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

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

    .content-block {
        padding: 60px 30px;
    }

    .image-block {
        min-height: 350px;
    }

    .trust-section,
    .pricing-section,
    .form-section,
    .values-section,
    .approach-section,
    .testimonials-section {
        padding: 60px 30px;
    }

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

    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .content-block h2 {
        font-size: 1.8rem;
    }

    .centered-content h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}