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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.hero-minimal {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 40px;
    position: relative;
    background-color: #fafafa;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 2;
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    color: #666;
    font-weight: 300;
    line-height: 1.5;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e5e5e5;
}

.intro-statement {
    padding: 160px 40px;
    background-color: #ffffff;
}

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

.large-text {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #333;
}

.large-text.emphasis {
    font-weight: 400;
    color: #1a1a1a;
}

.story-section {
    padding: 120px 40px;
    background-color: #fafafa;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    margin-top: 80px;
    letter-spacing: -0.02em;
}

.content-narrow h2:first-child {
    margin-top: 0;
}

.content-narrow p {
    font-size: 18px;
    margin-bottom: 28px;
    line-height: 1.8;
    color: #333;
}

.content-narrow img {
    width: 100%;
    height: auto;
    margin: 60px 0;
    object-fit: cover;
    background-color: #e5e5e5;
}

.insights-list {
    list-style: none;
    margin: 40px 0;
}

.insights-list li {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 28px;
    position: relative;
    line-height: 1.7;
}

.insights-list li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #999;
}

.simple-list {
    margin: 32px 0;
    padding-left: 24px;
}

.simple-list li {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.citation {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    vertical-align: super;
}

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

.insight-block {
    padding: 140px 40px;
    background-color: #ffffff;
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h3 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #333;
}

.insight-image {
    flex: 1;
}

.insight-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e5e5e5;
}

.revelation-section {
    padding: 120px 40px;
    background-color: #fafafa;
}

.testimonial-section {
    padding: 140px 40px;
    background-color: #1a1a1a;
}

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

.testimonial-text {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 40px;
}

.testimonial-author {
    font-size: 16px;
    color: #999;
    font-style: italic;
}

.approach-section {
    padding: 120px 40px;
    background-color: #ffffff;
}

.inline-link {
    color: #1a1a1a;
    text-decoration: underline;
    font-size: 18px;
    transition: color 0.2s;
    display: inline-block;
    margin-top: 20px;
}

.inline-link:hover {
    color: #666;
}

.benefit-reveal {
    padding: 140px 40px;
    background-color: #fafafa;
}

.benefit-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 320px;
}

.benefit-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 32px;
    background-color: #e5e5e5;
}

.benefit-item h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.cta-section {
    padding: 160px 40px;
    background-color: #ffffff;
}

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

.cta-wrapper h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-wrapper p {
    font-size: 20px;
    color: #666;
    margin-bottom: 48px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #333;
}

.page-hero {
    padding: 120px 40px 80px;
    background-color: #fafafa;
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.page-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 300;
}

.about-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

.services-intro {
    padding: 80px 40px;
    background-color: #ffffff;
}

.services-grid {
    padding: 60px 40px 120px;
    background-color: #fafafa;
}

.service-card {
    max-width: 1000px;
    margin: 0 auto 100px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 60px;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background-color: #e5e5e5;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.service-features {
    list-style: none;
    margin: 32px 0;
}

.service-features li {
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

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

.service-price {
    font-size: 32px;
    font-weight: 300;
    margin: 32px 0 24px;
    letter-spacing: -0.02em;
}

.select-button {
    padding: 14px 36px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.select-button:hover {
    background-color: #333;
}

.form-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.selected-service-display {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

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

.submit-button {
    padding: 16px 48px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover:not(:disabled) {
    background-color: #333;
}

.submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.contact-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 48px;
}

.info-block h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e5e5e5;
}

.additional-info {
    padding: 80px 40px 120px;
    background-color: #fafafa;
}

.faq-item {
    margin-bottom: 48px;
}

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

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

.thanks-section {
    padding: 120px 40px;
    background-color: #fafafa;
}

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

.thanks-container h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.thanks-message {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
}

.thanks-details {
    margin-bottom: 60px;
}

.thanks-details p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.selected-service-info {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.thanks-image {
    margin: 60px 0;
}

.thanks-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    background-color: #e5e5e5;
}

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

.next-steps h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 24px;
}

.steps-list {
    list-style: none;
}

.steps-list li {
    font-size: 16px;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    line-height: 1.7;
}

.steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

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

.action-button {
    padding: 14px 36px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.action-button:hover {
    background-color: #333;
}

.action-button.secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.action-button.secondary:hover {
    background-color: #f5f5f5;
}

.legal-page {
    padding: 80px 40px 120px;
    background-color: #ffffff;
}

.legal-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 48px;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 400;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.legal-page ul {
    margin: 20px 0 20px 24px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-page a {
    color: #0066cc;
    text-decoration: none;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 40px 32px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #999;
}

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

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

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer-references h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.footer-references p {
    font-size: 13px;
    line-height: 1.7;
    color: #999;
}

.footer-references a {
    color: #0066cc;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #999;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #666;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: #333;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 56px;
    }

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

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

    .service-card {
        flex-direction: column;
        padding: 40px;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 20px;
    }

    .nav-links {
        gap: 24px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .large-text {
        font-size: 24px;
    }

    .content-narrow h2 {
        font-size: 32px;
    }

    .benefit-grid {
        flex-direction: column;
    }

    .cta-wrapper h2 {
        font-size: 36px;
    }

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

    .service-card {
        padding: 32px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 48px;
    }

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