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

:root {
    --primary-color: #2d5f5d;
    --secondary-color: #c9ada7;
    --accent-color: #9a8c98;
    --text-dark: #22223b;
    --text-light: #4a4e69;
    --bg-light: #f8f9fa;
    --bg-cream: #faf8f5;
    --bg-section: #e9ecef;
    --border-color: #dee2e6;
    --white: #ffffff;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.ad-disclosure {
    background-color: var(--bg-section);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-story {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 30px;
}

.hero-content-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
}

.content-narrow {
    max-width: 680px;
    margin: 80px auto;
    padding: 0 30px;
}

.story-intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.story-intro p {
    margin-bottom: 24px;
}

.split-reveal {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 60px;
    background-color: var(--bg-cream);
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.split-text p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.split-visual {
    flex: 1;
}

.inline-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--bg-section);
}

.citation {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    text-decoration: underline;
}

.citation:hover {
    color: var(--accent-color);
}

.problem-amplify {
    padding: 100px 60px;
    background-color: var(--bg-section);
}

.problem-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background-color: var(--white);
    border-left: 5px solid var(--accent-color);
}

.problem-box h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.problem-list {
    list-style: none;
    margin-bottom: 30px;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.problem-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 24px;
}

.problem-insight {
    font-size: 19px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
}

.insight-science {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.insight-science h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.science-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.science-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: var(--bg-cream);
    border-radius: 8px;
}

.science-card h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.science-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.testimonial-inline {
    padding: 80px 60px;
    background-color: var(--primary-color);
    color: var(--white);
}

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

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

.testimonial-inline cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

.trust-builder {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 60px;
}

.trust-content {
    flex: 1.2;
}

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.trust-image {
    flex: 1;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--bg-section);
}

.benefits-reveal {
    padding: 100px 60px;
    background-color: var(--bg-cream);
}

.benefits-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.benefits-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-major {
    flex: 1 1 calc(60% - 15px);
    padding: 50px;
    background-color: var(--white);
    border-radius: 8px;
}

.benefit-minor {
    flex: 1 1 calc(40% - 15px);
    padding: 40px;
    background-color: var(--bg-section);
    border-radius: 8px;
}

.benefit-major h3,
.benefit-minor h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.benefit-major p,
.benefit-minor p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-inline {
    padding: 80px 60px;
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background-color: var(--bg-section);
    border-radius: 8px;
}

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

.services-pricing {
    padding: 100px 60px;
    background-color: var(--white);
}

.services-pricing h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.services-stacked {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: var(--bg-cream);
    border-radius: 8px;
    overflow: hidden;
    padding: 30px;
    align-items: center;
}

.service-image {
    width: 280px;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background-color: var(--bg-section);
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.select-service {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.form-section {
    padding: 100px 60px;
    background-color: var(--bg-section);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.form-intro {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.submit-button {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.final-reassurance {
    padding: 60px 60px;
    background-color: var(--bg-cream);
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    text-align: center;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.references-section {
    padding: 60px 60px;
    background-color: var(--white);
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.references-list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 30px;
}

.references-list li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-light);
}

.references-list a {
    color: var(--primary-color);
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--bg-light);
}

.footer-section a {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--bg-light);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--bg-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 20px 40px;
    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;
}

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

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.cookie-btn-accept,
.cookie-btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cookie-btn-accept:hover {
    background-color: var(--accent-color);
}

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

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

.page-header {
    padding: 80px 60px 60px;
    background-color: var(--bg-cream);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.header-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.about-content {
    padding: 60px 60px 100px;
}

.about-story {
    max-width: 900px;
    margin: 0 auto;
}

.about-story h2 {
    font-size: 36px;
    margin: 50px 0 20px;
    color: var(--primary-color);
}

.about-story p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-image-float {
    float: right;
    width: 400px;
    height: 300px;
    margin: 0 0 30px 40px;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--bg-section);
}

.about-image-full {
    width: 100%;
    height: 400px;
    margin: 40px 0;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--bg-section);
}

.philosophy-box {
    background-color: var(--bg-cream);
    padding: 40px;
    margin: 40px 0;
    border-radius: 8px;
}

.philosophy-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.philosophy-box ul {
    list-style: none;
    padding-left: 0;
}

.philosophy-box li {
    font-size: 17px;
    line-height: 1.7;
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--text-light);
}

.philosophy-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.about-quote {
    font-size: 22px;
    font-style: italic;
    color: var(--primary-color);
    padding: 30px 40px;
    margin: 40px 0;
    border-left: 4px solid var(--accent-color);
    background-color: var(--bg-cream);
}

.cta-about {
    padding: 80px 60px;
    text-align: center;
    background-color: var(--bg-section);
}

.cta-about h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-detail-page {
    padding: 60px 60px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-visual {
    flex: 1;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-light);
}

.service-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-info ul {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 0;
}

.service-info li {
    font-size: 16px;
    line-height: 1.7;
    padding: 6px 0 6px 25px;
    position: relative;
    color: var(--text-light);
}

.service-info li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-price-detail {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.services-faq {
    padding: 80px 60px;
    background-color: var(--bg-cream);
}

.services-faq h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-services {
    padding: 80px 60px;
    text-align: center;
}

.cta-services h3 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.contact-main {
    padding: 60px 60px 80px;
}

.contact-info-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

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

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.email-static {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-additional {
    padding: 60px 60px 80px;
    background-color: var(--bg-cream);
}

.contact-text {
    max-width: 900px;
    margin: 0 auto;
}

.contact-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-text h3 {
    font-size: 22px;
    margin: 40px 0 12px;
    color: var(--text-dark);
}

.contact-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-cta {
    padding: 80px 60px;
    text-align: center;
}

.contact-cta h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.thanks-container {
    padding: 100px 60px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.thanks-message {
    margin-bottom: 50px;
}

.thanks-message p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-light);
}

.thanks-next-steps {
    background-color: var(--bg-cream);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-next-steps ol {
    text-align: left;
    padding-left: 30px;
}

.thanks-next-steps li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-light);
}

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

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

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: var(--text-light);
}

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

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

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

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

    .split-reveal {
        flex-direction: column;
        padding: 60px 30px;
    }

    .trust-builder {
        flex-direction: column;
        padding: 60px 30px;
    }

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

    .service-image {
        width: 100%;
        height: 250px;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .contact-info-grid {
        flex-direction: column;
    }

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

    .about-image-float {
        float: none;
        width: 100%;
        margin: 20px 0;
    }

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