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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    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;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c1810;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #999;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f5f5f5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c1810;
    color: #fff;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

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

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

.hero-split {
    background-color: #fff;
    padding: 4rem 2rem;
}

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

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

.split-text {
    flex: 1;
}

.split-text h1 {
    font-size: 3rem;
    color: #2c1810;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.split-text h2 {
    font-size: 2.2rem;
    color: #2c1810;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.split-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #8b5a3c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
}

.cta-primary:hover,
.cta-secondary:hover {
    background-color: #6d4530;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 90, 60, 0.3);
}

.cta-secondary {
    background-color: transparent;
    border: 2px solid #8b5a3c;
    color: #8b5a3c;
}

.cta-secondary:hover {
    background-color: #8b5a3c;
    color: #fff;
}

.story-section {
    padding: 5rem 2rem;
    background-color: #f9f7f4;
}

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

.narrow-content h2 {
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 1.5rem;
}

.narrow-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.split-reverse {
    background-color: #fff;
    padding: 5rem 2rem;
}

.split-image-left {
    flex: 1;
    background-color: #f5f5f5;
}

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

.split-text-right {
    flex: 1;
}

.split-text-right h2 {
    font-size: 2.2rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.split-text-right p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.benefits-grid {
    padding: 5rem 2rem;
    background-color: #2c1810;
    color: #fff;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-grid h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefit-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #f9f7f4;
}

.testimonial {
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #8b5a3c;
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #8b5a3c;
}

.science-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.services-reveal {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 1.5rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: #555;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b5a3c;
    margin: 1rem 0;
}

.btn-select {
    width: 100%;
    padding: 0.75rem;
    background-color: #8b5a3c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background-color: #6d4530;
}

.form-section {
    padding: 4rem 2rem;
    background-color: #f9f7f4;
}

.form-section.hidden {
    display: none;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.form-container p {
    color: #555;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #8b5a3c;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.final-cta {
    padding: 5rem 2rem;
    background-color: #8b5a3c;
    color: #fff;
    text-align: center;
}

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

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.main-footer {
    background-color: #2c1810;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.references {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.references h4 {
    margin-bottom: 1rem;
}

.references ol {
    padding-left: 1.5rem;
}

.references ol li {
    margin-bottom: 0.5rem;
}

.references a {
    color: #ccc;
    text-decoration: underline;
}

.references a:hover {
    color: #fff;
}

.disclaimer {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.9rem;
    color: #bbb;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #999;
}

.page-header {
    padding: 4rem 2rem 2rem;
    background-color: #f9f7f4;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

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

.services-detail {
    padding: 3rem 2rem;
}

.service-item {
    margin-bottom: 4rem;
}

.service-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.service-image {
    flex: 1;
    background-color: #f5f5f5;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.service-info p {
    color: #555;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #8b5a3c;
    margin: 1.5rem 0;
}

.about-story {
    padding: 4rem 2rem;
    background-color: #fff;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f9f7f4;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    font-size: 1.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.value-item p {
    color: #555;
}

.process-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.process-steps {
    margin-top: 2rem;
}

.process-step {
    margin-bottom: 2.5rem;
}

.process-step h3 {
    font-size: 1.5rem;
    color: #8b5a3c;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #555;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #f9f7f4;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #2c1810;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-content {
    padding: 3rem 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.5rem;
    color: #2c1810;
    margin-bottom: 2rem;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    color: #8b5a3c;
    margin-bottom: 0.5rem;
}

.contact-block p {
    color: #555;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    background-color: #f5f5f5;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: #f9f7f4;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #555;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #f9f7f4;
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f7f4;
    border-radius: 4px;
}

.thanks-details p {
    font-size: 1.1rem;
    color: #555;
}

.thanks-info {
    margin: 2rem 0;
    text-align: left;
}

.thanks-info h2 {
    font-size: 1.8rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.thanks-info p {
    color: #555;
    margin-bottom: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #8b5a3c;
    color: #fff;
}

.btn-primary:hover {
    background-color: #6d4530;
}

.btn-secondary {
    background-color: transparent;
    color: #8b5a3c;
    border: 2px solid #8b5a3c;
}

.btn-secondary:hover {
    background-color: #8b5a3c;
    color: #fff;
}

.legal-page {
    padding: 3rem 2rem;
    background-color: #fafafa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.legal-container h1 {
    font-size: 2.5rem;
    color: #2c1810;
    margin-bottom: 1rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #2c1810;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: #8b5a3c;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-container p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container ul li {
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #8b5a3c;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #6d4530;
}

@media (max-width: 768px) {
    .split-content,
    .split-reverse,
    .contact-split,
    .service-split {
        flex-direction: column;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .split-text h1 {
        font-size: 2rem;
    }

    .split-text h2 {
        font-size: 1.8rem;
    }

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

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

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

    .thanks-actions {
        flex-direction: column;
    }

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