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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #ddd;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.hero-story {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-overlay {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
}

.narrative-intro {
    background-color: #fff;
    padding: 100px 30px;
}

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

.narrow-content h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

.narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.problem-amplification {
    background-color: #f8f6f3;
    padding: 90px 30px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-wrapper.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.text-block p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: #3a3a3a;
}

.image-block {
    flex: 1;
    background-color: #e8e4df;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-section {
    background-color: #2c2c2c;
    color: #f0f0f0;
    padding: 90px 30px;
}

.insight-section h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff;
}

.insight-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.insight-section a {
    color: #c9a876;
    text-decoration: none;
    border-bottom: 1px solid #c9a876;
}

.insight-section a:hover {
    color: #d4b887;
}

.trust-builder {
    background-color: #fff;
    padding: 100px 30px;
}

.two-column-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.column-image {
    flex: 1;
    background-color: #e8e4df;
}

.column-image img {
    width: 100%;
    height: auto;
    display: block;
}

.column-text {
    flex: 1;
}

.column-text h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.column-text p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: #3a3a3a;
}

.column-text a {
    color: #8b7355;
    text-decoration: none;
    border-bottom: 1px solid #8b7355;
}

.process-list {
    margin: 25px 0;
    padding-left: 25px;
}

.process-list li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.testimonials-inline {
    background-color: #f0ede8;
    padding: 90px 30px;
}

.testimonials-inline h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 50px;
    color: #1a1a1a;
    text-align: center;
}

.testimonial {
    background-color: #fff;
    padding: 35px 40px;
    margin-bottom: 30px;
    border-left: 4px solid #8b7355;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.testimonial cite {
    font-size: 0.95rem;
    font-style: normal;
    color: #666;
}

.benefits-reveal {
    background-color: #fff;
    padding: 100px 30px;
}

.benefit-item {
    margin-bottom: 35px;
}

.benefit-item h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #3a3a3a;
}

.services-showcase {
    background-color: #fafafa;
    padding: 100px 30px;
}

.services-showcase h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.services-showcase > .narrow-content > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
    color: #4a4a4a;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    background-color: #fff;
    display: flex;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.service-card img {
    width: 45%;
    display: block;
    background-color: #e8e4df;
}

.service-content {
    width: 55%;
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

.price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #8b7355;
    margin-top: 10px;
    margin-bottom: 25px;
}

.cta-service {
    background-color: #8b7355;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-service:hover {
    background-color: #6f5a43;
}

.cta-form-section {
    background-color: #2c2c2c;
    color: #f0f0f0;
    padding: 100px 30px;
}

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

.form-container h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 40px;
    color: #ccc;
}

.contact-form {
    background-color: #3a3a3a;
    padding: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #ddd;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #555;
    background-color: #4a4a4a;
    color: #fff;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #5a5a5a;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    background-color: #8b7355;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.scientific-references {
    background-color: #f8f6f3;
    padding: 60px 30px;
}

.scientific-references h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.references-list a {
    color: #8b7355;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.references-list a:hover {
    border-bottom-color: #8b7355;
}

.disclaimer-section {
    background-color: #fff;
    padding: 60px 30px;
}

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

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

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #8b7355;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px 30px;
    display: none;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.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 {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #8b7355;
    color: #fff;
}

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

.btn-reject {
    background-color: #4a4a4a;
    color: #fff;
}

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

.page-header {
    background-color: #f8f6f3;
    padding: 80px 30px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

.about-story {
    background-color: #fff;
    padding: 90px 30px;
}

.mission-section {
    background-color: #f8f6f3;
    padding: 90px 30px;
}

.values-section {
    background-color: #fff;
    padding: 90px 30px;
}

.value-item {
    margin-bottom: 40px;
}

.value-item h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 1.05rem;
    color: #3a3a3a;
}

.team-section {
    background-color: #2c2c2c;
    color: #f0f0f0;
    padding: 100px 30px;
}

.team-section h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #fff;
}

.team-section p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: #ddd;
}

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

.service-item {
    background-color: #fff;
    padding: 40px;
    border-left: 4px solid #8b7355;
}

.service-item h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-item .service-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #8b7355;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1.05rem;
    color: #3a3a3a;
    line-height: 1.6;
}

.contact-info-section {
    background-color: #fff;
    padding: 90px 30px;
}

.contact-info-section h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.info-block h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.thanks-section {
    background-color: #fff;
    padding: 120px 30px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-section h1 {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-section p {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.thanks-section .selected-service-display {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8b7355;
    margin: 25px 0;
}

.thanks-section a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #8b7355;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.thanks-section a:hover {
    background-color: #6f5a43;
}

.legal-page {
    background-color: #fff;
    padding: 60px 30px 90px;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #3a3a3a;
    line-height: 1.7;
}

.legal-page ul {
    margin: 15px 0 15px 25px;
}

.legal-page ul li {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #3a3a3a;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .content-wrapper,
    .content-wrapper.reverse,
    .two-column-layout {
        flex-direction: column;
    }

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

    .service-card img,
    .service-content {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 20px;
        font-size: 0.85rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}