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

:root {
    --primary-color: #2d3748;
    --secondary-color: #4a5568;
    --accent-color: #667eea;
    --light-bg: #f7fafc;
    --white: #ffffff;
    --text-dark: #1a202c;
    --text-gray: #718096;
    --border-color: #e2e8f0;
    --success: #48bb78;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

.main-nav {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split,
.intro-split,
.testimonial-split,
.approach-split,
.form-split,
.page-hero-split,
.story-split,
.philosophy-split,
.team-split,
.values-split,
.services-hero-split,
.service-detail-split,
.contact-hero-split,
.contact-info-split,
.faq-split {
    display: flex;
    min-height: 600px;
}

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

.hero-content,
.intro-content,
.testimonial-content,
.approach-content,
.form-intro,
.story-content,
.philosophy-content,
.team-content,
.values-content,
.service-info,
.info-content,
.faq-content {
    padding: 4rem;
    max-width: 600px;
}

.hero-content h1,
.intro-content h2,
.approach-content h2,
.story-content h2,
.philosophy-content h2,
.team-content h2,
.values-content h2,
.service-info h2,
.info-content h2,
.faq-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-content p,
.intro-content p,
.approach-content p,
.story-content p,
.philosophy-content p,
.team-content p,
.values-content p,
.service-info p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-image,
.intro-image,
.testimonial-image,
.approach-image,
.philosophy-image,
.team-image,
.values-image,
.service-image,
.contact-image,
.faq-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

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

.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover,
.cta-secondary:hover,
.cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.cta-secondary {
    background: var(--primary-color);
}

.cta-large {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
}

.link-underline,
.link-arrow {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    transition: border-color 0.3s;
}

.link-underline:hover,
.link-arrow:hover {
    border-color: var(--primary-color);
}

.services-preview {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.card-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-gray);
}

.btn-select,
.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover,
.btn-submit:hover {
    background: var(--accent-color);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.testimonial-content {
    padding: 4rem;
}

.testimonial-content blockquote {
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 4px solid var(--accent-color);
}

.testimonial-content p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-content cite {
    font-size: 1rem;
    color: var(--text-gray);
    font-style: normal;
}

.stats-section {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: var(--white);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.final-cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.final-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.final-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s;
}

.sticky-btn:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background: var(--success);
    color: var(--white);
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.belief-list {
    list-style: none;
    margin-top: 2rem;
}

.belief-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
}

.belief-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.approach-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.approach-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.approach-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.approach-grid,
.comparison-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-card,
.compare-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.approach-card h3,
.compare-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-card p,
.compare-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-gray);
}

.cta-about,
.cta-contact {
    padding: 6rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.service-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.service-features {
    margin: 2rem 0;
}

.service-features h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-features ul {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.service-pricing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.comparison-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.recommend {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.form-section {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
}

.contact-details {
    margin: 2rem 0;
}

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

.detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.detail-item p,
.detail-item a {
    color: var(--text-gray);
    line-height: 1.8;
}

.detail-item a {
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    transition: color 0.3s;
}

.detail-item a:hover {
    color: var(--accent-color);
}

.location-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.location-note p {
    color: var(--text-gray);
    line-height: 1.8;
}

.response-info {
    padding: 6rem 2rem;
    background: var(--white);
}

.response-content {
    max-width: 1200px;
    margin: 0 auto;
}

.response-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

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

.expect-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.expect-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.expect-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.map-section {
    padding: 0;
}

.map-container {
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.map-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.map-overlay p {
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.thanks-hero {
    padding: 8rem 2rem;
    text-align: center;
    background: var(--light-bg);
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.lead {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.thanks-body {
    margin-bottom: 4rem;
}

.thanks-body p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.next-steps {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.next-steps p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s;
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-text {
    display: inline-block;
    padding: 1rem 2rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-text:hover {
    color: var(--primary-color);
}

.what-happens-next {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

.testimonial-thanks {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

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

.testimonial-container blockquote {
    border-left: none;
    padding: 0;
}

.testimonial-container p {
    font-size: 1.75rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-container cite {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.legal-page {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.updated {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.legal-container p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
}

.legal-container a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.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 var(--border-color);
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    color: var(--text-gray);
}

@media (max-width: 968px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .testimonial-split,
    .approach-split,
    .form-split,
    .page-hero-split,
    .story-split,
    .philosophy-split,
    .team-split,
    .values-split,
    .services-hero-split,
    .service-detail-split,
    .contact-hero-split,
    .contact-info-split,
    .faq-split {
        flex-direction: column;
        min-height: auto;
    }

    .reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .testimonial-content,
    .approach-content,
    .form-intro,
    .story-content,
    .philosophy-content,
    .team-content,
    .values-content,
    .service-info,
    .info-content,
    .faq-content {
        padding: 3rem 2rem;
    }

    .hero-content h1,
    .intro-content h2,
    .approach-content h2 {
        font-size: 2rem;
    }

    .hero-image,
    .intro-image,
    .testimonial-image,
    .approach-image,
    .philosophy-image,
    .team-image,
    .values-image,
    .service-image,
    .contact-image,
    .faq-image {
        min-height: 300px;
    }

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

    .approach-card,
    .compare-card,
    .expect-card {
        flex: 1 1 100%;
    }

    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .timeline-item {
        gap: 1rem;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .legal-container {
        padding: 2rem;
    }

    .map-overlay {
        position: static;
        margin: 2rem;
    }
}

@media (max-width: 640px) {
    .final-content h2 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

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

    .testimonial-container p {
        font-size: 1.25rem;
    }

    .footer-content {
        flex-direction: column;
    }
}