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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #16213e;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-cookie {
    background: var(--highlight-color);
    color: var(--white);
}

.btn-cookie:hover {
    background: #d63651;
}

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

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: var(--highlight-color);
}

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

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

.split-left {
    padding: 4rem;
    background: var(--bg-light);
}

.split-right {
    background: var(--secondary-color);
}

.hero-image {
    overflow: hidden;
    position: relative;
}

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

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--highlight-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background: #d63651;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.split-container {
    display: flex;
    align-items: stretch;
}

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

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

.split-container .split-left {
    padding: 0;
}

.split-container .split-right {
    background: var(--white);
}

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

.content-block {
    padding: 4rem;
    max-width: 650px;
}

.content-block h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.content-block p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.intro-section,
.story-section,
.approach-section,
.about-story {
    margin: 0;
}

.dark-bg {
    background: var(--bg-dark);
    color: var(--white);
}

.dark-bg h2,
.dark-bg h3 {
    color: var(--white);
}

.dark-bg p {
    color: rgba(255, 255, 255, 0.85);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.container-narrow.center {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

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

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

.insight-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.insight-card h3 {
    font-size: 2.5rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.insight-card p {
    font-size: 1.1rem;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s;
}

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

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

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

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.form-wrapper {
    padding: 4rem;
    background: var(--bg-light);
}

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

.form-wrapper > p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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: var(--accent-color);
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--highlight-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--highlight-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

.final-cta {
    background: var(--bg-light);
}

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

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--highlight-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-large:hover {
    background: #d63651;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.3);
}

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

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

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

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.page-hero {
    background: var(--bg-dark);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

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

.page-hero .lead-text {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

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

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.expertise-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.expertise-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.expertise-item p {
    color: var(--text-light);
}

.large-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.mission-section {
    background: var(--bg-light);
}

.service-detail {
    margin: 0;
}

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

.service-list {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-list li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-main {
    margin: 0;
}

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

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-item a {
    color: var(--highlight-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

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

.contact-note h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-note p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.faq-section {
    background: var(--bg-light);
}

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

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.thanks-hero {
    background: var(--bg-dark);
    color: var(--white);
    padding: 5rem 2rem;
}

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

.thanks-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-hero .lead-text {
    color: rgba(255, 255, 255, 0.85);
}

.thanks-details {
    background: var(--white);
}

.thanks-info {
    margin-bottom: 3rem;
}

.service-highlight {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--highlight-color);
}

.service-highlight h3 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 1rem;
}

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

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--primary-color);
}

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

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    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.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.resource-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
}

.resource-card h3 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.3rem;
}

.resource-card p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
}

.link-arrow {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: #d63651;
}

.legal-page {
    background: var(--white);
}

.legal-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content {
    margin-top: 2rem;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.7;
}

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

.legal-content li {
    margin-bottom: 0.8rem;
    color: var(--text-color);
    line-height: 1.6;
}

.legal-content a {
    color: var(--highlight-color);
    text-decoration: none;
}

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

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

    .split-container {
        flex-direction: column;
    }

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

    .split-left,
    .split-right {
        padding: 3rem 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .content-block {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .lead-text {
        font-size: 1.1rem;
    }

    .section-header h2,
    .content-block h2 {
        font-size: 2rem;
    }

    .container,
    .container-narrow {
        padding: 3rem 1.5rem;
    }

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

    .insight-grid,
    .values-grid,
    .testimonials-grid {
        flex-direction: column;
    }

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

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

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

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

    .btn-cookie,
    .btn-cookie-reject {
        flex: 1;
    }
}