* {
    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: #1a1a1a;
    background-color: #ffffff;
}

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

a:hover {
    opacity: 0.7;
}

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

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-notice {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

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

.hero-right {
    flex: 1;
    background-color: #e0e0e0;
}

.hero-left h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #444;
    line-height: 1.7;
}

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

.cta-primary:hover {
    background-color: #333333;
    opacity: 1;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #1a1a1a;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #1a1a1a;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    opacity: 1;
}

.intro-section {
    padding: 100px 20px;
    background-color: #ffffff;
    text-align: center;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-section p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.split-container {
    display: flex;
    min-height: 500px;
}

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

.split-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2,
.split-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.insight-split {
    background-color: #f9f9f9;
}

.value-split {
    background-color: #ffffff;
}

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

.values-list {
    list-style: none;
    margin-top: 20px;
}

.values-list li {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.values-list strong {
    color: #1a1a1a;
    font-weight: 600;
}

.problem-section {
    padding: 100px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.problem-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.misconceptions-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.misconception-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.misconception-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.misconception-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

.services-preview {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
}

.section-intro {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 50px;
}

.service-item-split {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.service-item-split.reverse {
    flex-direction: row-reverse;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.price {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 16px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.testimonial-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.testimonial {
    padding: 50px;
    background-color: #f9f9f9;
    border-left: 4px solid #1a1a1a;
    border-radius: 8px;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.cta-section {
    padding: 100px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #cccccc;
}

.inline-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.inline-form input,
.inline-form select {
    flex: 1;
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid #333;
    border-radius: 6px;
    background-color: #ffffff;
    color: #1a1a1a;
}

.inline-form select {
    cursor: pointer;
}

.inline-form button {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
}

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

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-align: center;
    font-style: italic;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #cccccc;
}

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

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

.footer-col ul li a {
    font-size: 15px;
    color: #cccccc;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    margin: 0;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-accept {
    padding: 12px 24px;
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
}

.btn-reject {
    padding: 12px 24px;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.lead {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
}

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

.methodology-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.methodology-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
}

.methodology-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
}

.method-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.method-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.method-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.values-split {
    background-color: #1a1a1a;
    color: #ffffff;
}

.values-split .split-content h2 {
    color: #ffffff;
    margin-bottom: 30px;
}

.values-split .values-list li {
    color: #cccccc;
}

.values-split .values-list strong {
    color: #ffffff;
}

.team-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 700;
}

.expertise-areas {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
}

.expertise-item {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: center;
}

.expertise-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.expertise-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.services-detailed {
    padding: 60px 20px 100px;
}

.service-detail-split {
    display: flex;
    margin-bottom: 80px;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    min-height: 400px;
    background-color: #e0e0e0;
}

.service-detail-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f9f9;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.service-includes {
    list-style: none;
    margin: 30px 0;
}

.service-includes li {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #1a1a1a;
}

.service-pricing {
    margin-top: 30px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.process-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1;
    min-width: 80px;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.process-step p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

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

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info {
    flex: 1;
    padding: 60px 50px;
    background-color: #f9f9f9;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.email-display {
    color: #1a1a1a;
    font-weight: 500;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #ffffff;
    border-left: 4px solid #1a1a1a;
    border-radius: 4px;
}

.contact-note p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.contact-visual {
    flex: 1;
    background-color: #e0e0e0;
}

.faq-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

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

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

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-details {
    margin: 40px 0;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.service-confirmation {
    text-align: center;
}

.service-confirmation p {
    font-size: 17px;
    color: #666;
    margin-bottom: 8px;
}

.selected-service {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 8px;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

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

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

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 700;
}

.last-updated {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0;
    padding-left: 30px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

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

.cookie-table th {
    background-color: #f9f9f9;
    font-weight: 600;
}

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

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

    .hero-right {
        min-height: 400px;
    }

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

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

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }

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

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

    .service-detail-content {
        padding: 40px 30px;
    }

    .form-row {
        flex-direction: column;
    }

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

    .contact-info {
        padding: 40px 30px;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

    .process-step {
        flex-direction: column;
    }

    .step-number {
        min-width: auto;
    }
}