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

html {
    scroll-behavior: smooth;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2563eb;
}

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

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

.main-nav a:hover {
    color: #2563eb;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #6b7280;
    padding: 0.4rem 0.8rem;
    background: #f3f4f6;
    border-radius: 4px;
    font-weight: 500;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
}

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

.btn-primary, .btn-secondary {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

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

.btn-secondary {
    background: #6b7280;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #4b5563;
}

.hero-split {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.split-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

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

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

.split-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.split-left p, .split-right p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.split-right img, .split-left img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    width: 100%;
    object-fit: cover;
    height: 400px;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.intro-section, .trust-section, .process-section, .insights-section, .about-intro, .history-section, .expertise-section, .services-intro, .location-section, .contact-main, .additional-info {
    padding: 5rem 0;
}

.intro-section {
    background: #ffffff;
}

.trust-section {
    background: #f8fafc;
}

.split-right h2, .split-left h2 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.split-right h3, .split-left h3 {
    font-size: 1.5rem;
    color: #334155;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.text-link {
    color: #2563eb;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

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

.services-preview, .services-detailed {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.section-header-center h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #64748b;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.service-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1.5rem 0;
}

.btn-service {
    width: 100%;
    padding: 0.9rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #1d4ed8;
}

.process-steps {
    margin-top: 2rem;
}

.step {
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 3px solid #2563eb;
}

.step h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step p {
    color: #64748b;
}

.testimonials-section {
    padding: 5rem 0;
    background: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonials-wrapper {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.testimonial-item p {
    font-size: 1.05rem;
    color: #475569;
    font-style: italic;
    margin-bottom: 1rem;
}

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

.form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.form-intro p {
    color: #64748b;
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 1.1rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    margin-top: 1rem;
}

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

.final-cta {
    padding: 5rem 0;
    background: #1e293b;
    color: #ffffff;
    text-align: center;
}

.cta-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-center p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cbd5e1;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    text-align: center;
    color: #94a3b8;
}

.disclaimer {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 1.5rem;
    background: #1e293b;
    border-radius: 6px;
}

.page-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.3rem;
    color: #cbd5e1;
}

.values-section, .approach-section, .faq-section {
    padding: 5rem 0;
    background: #ffffff;
}

.values-grid, .faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card, .faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-top: 4px solid #2563eb;
}

.value-card h3, .faq-item h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.value-card p, .faq-item p {
    color: #64748b;
    line-height: 1.7;
}

.expertise-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.expertise-list li {
    color: #475569;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.commitment-section, .cta-section, .support-info {
    padding: 5rem 0;
}

.commitment-box, .cta-box, .info-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
}

.commitment-box h2, .cta-box h2, .info-box h2 {
    font-size: 2.3rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.commitment-box p, .cta-box p, .info-box p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.service-detail {
    margin-bottom: 4rem;
}

.service-content {
    padding: 2rem 0;
}

.price-tag {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1rem 0 1.5rem;
    padding: 0.8rem 1.5rem;
    background: #eff6ff;
    border-radius: 8px;
}

.service-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.service-content li {
    color: #475569;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.contact-info-block {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 0.7rem;
}

.contact-item p {
    color: #475569;
    line-height: 1.7;
}

.info-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 6px;
}

.info-note p {
    color: #78350f;
    margin: 0;
}

.thanks-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    color: #475569;
    margin-bottom: 3rem;
}

.submission-details {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: left;
}

.submission-details h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.detail-item {
    margin-bottom: 1rem;
}

.detail-item strong {
    color: #1e293b;
    display: block;
    margin-bottom: 0.3rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.step-item p {
    color: #64748b;
}

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

.legal-page {
    padding: 3rem 0;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: #334155;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

.legal-content ul, .legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    color: #475569;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-content ul li {
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.last-updated {
    color: #64748b;
    font-style: italic;
    margin-bottom: 2rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th {
    background: #f8fafc;
    color: #1e293b;
    font-weight: 600;
}

.cookie-table td {
    color: #475569;
}

.contact-detail {
    font-weight: 600;
    color: #2563eb;
    font-size: 1.1rem;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (max-width: 968px) {
    .split-content {
        flex-direction: column;
        gap: 2rem;
    }

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

    .split-left h1 {
        font-size: 2.2rem;
    }

    .split-right h2, .split-left h2 {
        font-size: 1.8rem;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s;
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

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

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

    .testimonial-item {
        flex: 1 1 100%;
    }

    .value-card, .faq-item {
        flex: 1 1 100%;
    }

    .step-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 640px) {
    .split-left h1 {
        font-size: 1.8rem;
    }

    .section-header-center h2, .section-title-center {
        font-size: 1.8rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }
}