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

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

.ad-disclosure {
    background-color: #f8f8f8;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.hero-minimal {
    max-width: 1400px;
    margin: 80px auto 140px;
    padding: 0 60px;
}

.hero-content {
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 84px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -3px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 700px;
    font-weight: 300;
}

.hero-image-container {
    width: 100%;
    height: 600px;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.insight-section {
    max-width: 1400px;
    margin: 180px auto;
    padding: 0 60px;
}

.insight-wrapper {
    display: flex;
    gap: 100px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.insight-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.insight-visual {
    flex: 1;
    background-color: #f5f5f5;
}

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

.principle-block {
    max-width: 1400px;
    margin: 180px auto;
    padding: 0 60px;
}

.principle-block h3 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 80px;
    letter-spacing: -2px;
}

.principle-grid {
    display: flex;
    gap: 60px;
}

.principle-card {
    flex: 1;
}

.principle-number {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 500;
}

.principle-card h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.principle-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.research-backed {
    background-color: #f9f9f9;
    padding: 120px 60px;
    margin: 180px 0;
}

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

.research-content h3 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.research-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.citation {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.citation:hover {
    opacity: 0.7;
}

.services-preview {
    max-width: 1400px;
    margin: 180px auto;
    padding: 0 60px;
}

.services-preview h2 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 80px;
    letter-spacing: -2px;
}

.services-cards {
    display: flex;
    gap: 50px;
}

.service-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 30px;
    background-color: #f5f5f5;
}

.service-card h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.service-card p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.price {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.cta-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 4px;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.cta-link:hover {
    opacity: 0.6;
}

.form-section {
    background-color: #f9f9f9;
    padding: 140px 60px;
    margin: 180px 0 0;
}

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

.form-container h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.form-intro {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 60px;
    line-height: 1.6;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.inquiry-form label {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: block;
}

.inquiry-form input,
.inquiry-form select {
    width: 100%;
    padding: 16px 20px;
    font-size: 17px;
    border: 1px solid #ddd;
    background-color: #fff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    background-color: #1a1a1a;
    color: #fff;
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: inherit;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

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

.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 100px 60px 60px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

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

.footer-section a {
    display: block;
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

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

.footer-references h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.footer-references p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-references a {
    color: #5a9fd4;
    text-decoration: none;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 30px 60px;
    display: none;
    z-index: 1000;
}

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

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

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

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

.cookie-btn {
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.3s ease;
}

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

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

.cookie-btn:hover {
    opacity: 0.8;
}

.page-hero {
    max-width: 1400px;
    margin: 100px auto 120px;
    padding: 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
}

.page-subtitle {
    font-size: 24px;
    color: #4a4a4a;
    font-weight: 300;
}

.about-intro {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 60px;
}

.about-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-content img {
    width: 50%;
    height: auto;
    object-fit: cover;
    background-color: #f5f5f5;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: -1.5px;
}

.about-text p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.methodology {
    max-width: 1400px;
    margin: 180px auto;
    padding: 0 60px;
}

.methodology h2 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 80px;
    letter-spacing: -2px;
}

.method-blocks {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.method-item h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.method-item p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
}

.principles-detailed {
    background-color: #f9f9f9;
    padding: 120px 60px;
    margin: 180px 0;
}

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

.principle-detail h3 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.principle-detail p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.team-philosophy {
    max-width: 900px;
    margin: 180px auto;
    padding: 0 60px;
}

.team-philosophy h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 50px;
    letter-spacing: -1.5px;
}

.team-approach p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.services-detailed {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 60px;
}

.service-detail {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 140px;
}

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #f5f5f5;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.service-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.service-includes h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.service-includes ul {
    list-style: none;
    margin-bottom: 40px;
}

.service-includes li {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-price-block {
    background-color: #f9f9f9;
    padding: 40px;
    margin-top: 40px;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

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

.cta-services {
    max-width: 900px;
    margin: 140px auto 180px;
    padding: 0 60px;
    text-align: center;
}

.cta-services h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.cta-services p {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 50px;
}

.cta-button-large {
    display: inline-block;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

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

.contact-content {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 60px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-block {
    flex: 1;
    min-width: 280px;
}

.contact-block h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.contact-note {
    max-width: 800px;
    background-color: #f9f9f9;
    padding: 50px;
    margin-top: 60px;
}

.contact-note h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.contact-note p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-hero {
    max-width: 900px;
    margin: 120px auto;
    padding: 0 60px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 32px;
}

.thanks-message {
    font-size: 22px;
    color: #4a4a4a;
    margin-bottom: 40px;
    line-height: 1.6;
}

.thanks-details {
    margin: 40px 0;
}

.selected-service {
    font-size: 18px;
    padding: 20px;
    background-color: #f9f9f9;
}

.thanks-next {
    margin: 80px 0;
    text-align: left;
}

.thanks-next h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
    text-align: center;
}

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

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

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #ddd;
    min-width: 50px;
}

.step p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
}

.back-link {
    display: inline-block;
    margin-top: 60px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 4px;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.6;
}

.legal-page {
    max-width: 1000px;
    margin: 80px auto 140px;
    padding: 0 60px;
}

.legal-page h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -2px;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 60px;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 12px;
}

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

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

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

    .insight-wrapper,
    .about-content,
    .service-detail {
        flex-direction: column;
    }

    .services-cards,
    .principle-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 30px;
    }

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

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

    .hero-minimal,
    .insight-section,
    .principle-block,
    .services-preview,
    .methodology,
    .services-detailed,
    .contact-content,
    .legal-page,
    .about-intro,
    .team-philosophy,
    .thanks-hero {
        padding: 0 30px;
    }

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

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

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

    .research-backed,
    .form-section,
    .principles-detailed {
        padding: 80px 30px;
    }

    .site-footer {
        padding: 60px 30px 40px;
    }

    .cookie-banner {
        padding: 20px 30px;
    }

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