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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.nav-left {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #16a085;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

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

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #546e7a;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background-color: #e8eef2;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #16a085;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #138d75;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #16a085;
    text-decoration: none;
    border: 2px solid #16a085;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #16a085;
    color: #ffffff;
}

.intro-asymmetric {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.content-narrow {
    max-width: 700px;
}

.content-narrow h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.content-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 1rem;
}

.insight-card-offset {
    flex: 1;
    margin-top: 4rem;
}

.insight-card {
    background-color: #ecf8f5;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #16a085;
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.insight-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
}

.citation {
    color: #16a085;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #138d75;
}

.problem-amplification {
    background-color: #ffffff;
    padding: 6rem 2rem;
}

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-image {
    flex: 1;
    background-color: #e8eef2;
    border-radius: 8px;
    overflow: hidden;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

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

.benefit-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #546e7a;
}

.benefit-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #16a085;
    font-weight: 700;
}

.approach-reveal {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

.content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 4rem;
}

.content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.content-centered p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #546e7a;
}

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

.approach-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.approach-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8eef2;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a252f;
}

.approach-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
    margin: 0 1.5rem 1.5rem;
}

.testimonial-inline {
    padding: 6rem 2rem;
    background-color: #1a252f;
}

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

.testimonial-content blockquote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #ffffff;
    font-style: italic;
    margin: 0;
}

.testimonial-content cite {
    display: block;
    margin-top: 2rem;
    font-size: 1.125rem;
    color: #16a085;
    font-style: normal;
}

.services-reveal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    font-weight: 700;
}

.services-header p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #546e7a;
}

.services-split-layout {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 2rem;
}

.service-card-large {
    flex: 1;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    border-top: 4px solid #16a085;
}

.service-card-large h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.service-card-large p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 2rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 6px;
}

.service-duration {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #16a085;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #16a085;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.service-card .service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #16a085;
    margin-bottom: 1.5rem;
    display: block;
}

.service-select {
    padding: 0.875rem 2rem;
    background-color: #16a085;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.service-select:hover {
    background-color: #138d75;
    transform: translateY(-2px);
}

.science-backing {
    padding: 6rem 2rem;
    background-color: #ecf8f5;
}

.form-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.form-image {
    flex: 1;
    background-color: #e8eef2;
    border-radius: 8px;
    overflow: hidden;
}

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

.form-content {
    flex: 1;
}

.form-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a252f;
    font-weight: 700;
}

.form-content p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: #546e7a;
}

.main-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    color: #546e7a;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #16a085;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.final-cta {
    padding: 6rem 2rem;
    background-color: #1a252f;
    text-align: center;
}

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

.final-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #b0bec5;
}

.footer {
    background-color: #1a252f;
    color: #b0bec5;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    color: #b0bec5;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.references {
    font-size: 0.85rem;
    line-height: 1.5;
}

.references p {
    margin-bottom: 0.75rem;
}

.references a {
    display: inline;
    color: #16a085;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #37474f;
    text-align: center;
    font-size: 0.9rem;
}

.disclaimer {
    background-color: #263238;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0bec5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    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 {
    color: #b0bec5;
    font-size: 0.95rem;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

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

.btn-accept {
    background-color: #16a085;
    color: #ffffff;
}

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

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

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

.cookie-link {
    color: #16a085;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #138d75;
}

.page-hero {
    background-color: #1a252f;
    padding: 6rem 2rem 4rem;
    text-align: center;
}

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

.page-hero-content p {
    font-size: 1.25rem;
    color: #b0bec5;
}

.about-story {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.philosophy-section {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.philosophy-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid #16a085;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.philosophy-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
}

.methodology-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.methodology-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a252f;
}

.method-step {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.method-image {
    flex: 1;
    background-color: #e8eef2;
    border-radius: 8px;
    overflow: hidden;
}

.method-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.method-text {
    flex: 1;
}

.method-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.method-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
}

.commitment-section {
    padding: 6rem 2rem;
    background-color: #ecf8f5;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-detail-card {
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-detail-header {
    background-color: #f8f9fa;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #16a085;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: #1a252f;
    flex: 1;
}

.service-price-large {
    font-size: 2.25rem;
    font-weight: 700;
    color: #16a085;
}

.service-detail-content {
    display: flex;
    gap: 3rem;
    padding: 3rem;
    align-items: flex-start;
}

.service-detail-image {
    flex: 1;
    background-color: #e8eef2;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

.service-detail-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-detail-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-text li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #546e7a;
}

.service-detail-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 2rem;
}

.service-cta {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.contact-content {
    padding: 4rem 2rem;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.contact-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a252f;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 0.5rem;
}

.note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.contact-image {
    flex: 1;
    background-color: #e8eef2;
    border-radius: 8px;
    overflow: hidden;
}

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

.response-info {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 900px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.thanks-lead {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #546e7a;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a252f;
}

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

.step {
    flex: 1;
    min-width: 250px;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #16a085;
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
}

.service-confirmation {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: #ecf8f5;
    border-radius: 6px;
}

.service-confirmation h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #16a085;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: #16a085;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #138d75;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #16a085;
    text-decoration: none;
    border: 2px solid #16a085;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #16a085;
    color: #ffffff;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 1rem;
}

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

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #546e7a;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background-color: #f8f9fa;
}

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

.cookie-table th {
    font-weight: 600;
    color: #1a252f;
}

.cookie-table td {
    color: #546e7a;
}

@media (max-width: 968px) {
    .hero-split,
    .split-layout,
    .form-container-split,
    .contact-split,
    .service-detail-content,
    .method-step {
        flex-direction: column;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .intro-asymmetric {
        flex-direction: column;
    }

    .insight-card-offset {
        margin-top: 2rem;
    }

    .services-split-layout {
        flex-direction: column;
    }

    .approach-grid,
    .services-grid,
    .philosophy-grid,
    .next-steps {
        flex-direction: column;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

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