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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

.main-nav {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

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

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

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

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

.hero-immersive {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #0d0d0d;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
}

.story-opener {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.narrow-column {
    max-width: 700px;
    margin: 0 auto;
}

.opening-line {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: #1a1a1a;
}

.narrow-column p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.insight-reveal {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.problem-amplification {
    padding: 5rem 2rem;
    background-color: #f4f4f4;
}

.centered-block {
    max-width: 1100px;
    margin: 0 auto;
}

.centered-block h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.problem-grid {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

.problem-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-left: 4px solid #d32f2f;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.problem-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.trust-builder {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.trust-builder h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.trust-builder p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.testimonial-inline {
    padding: 4rem 2rem;
    background-color: #2c2c2c;
}

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

.testimonial-offset blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.7;
    padding-left: 2rem;
    border-left: 5px solid #888;
}

.testimonial-offset cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: #aaa;
}

.benefits-reveal {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
}

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

.wide-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.benefits-cards {
    display: flex;
    gap: 2.5rem;
    justify-content: space-between;
}

.benefit-item {
    flex: 1;
}

.benefit-image {
    background-color: #e0e0e0;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

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

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

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

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

.service-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-entry {
    padding: 2.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.service-entry:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.service-entry h3 {
    font-size: 1.7rem;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c7a3e;
}

.service-entry p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #333;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f4f4f4;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.form-intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-button {
    background-color: #2c7a3e;
    color: #ffffff;
    border: none;
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #246a33;
}

.scientific-backing {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.scientific-backing h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.scientific-backing p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.scientific-backing a {
    color: #1a5a8a;
    text-decoration: none;
}

.scientific-backing a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fef9e7;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    border-left: 4px solid #f39c12;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.main-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #bbb;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

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

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

.reference-list {
    font-size: 0.85rem;
    line-height: 1.8;
}

.reference-list a {
    color: #9bb5d4;
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 2000;
    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: 2rem;
}

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

.cookie-content a {
    color: #9bb5d4;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #2c7a3e;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #246a33;
}

.cookie-reject {
    background-color: #666;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #555;
}

.thanks-hero {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

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

.thanks-message {
    font-size: 1.3rem;
    color: #2c7a3e;
    margin-bottom: 2rem;
}

.thanks-details {
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

#serviceConfirmation {
    font-weight: 600;
    color: #1a1a1a;
}

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

.button-primary,
.button-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.button-primary {
    background-color: #2c7a3e;
    color: #ffffff;
}

.button-primary:hover {
    background-color: #246a33;
}

.button-secondary {
    background-color: #e0e0e0;
    color: #1a1a1a;
}

.button-secondary:hover {
    background-color: #d0d0d0;
}

.next-steps {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.steps-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: space-between;
    margin-top: 2rem;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.about-intro {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.about-intro h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
}

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

.story-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.philosophy {
    padding: 5rem 2rem;
    background-color: #f4f4f4;
}

.philosophy-cards {
    display: flex;
    gap: 2.5rem;
    justify-content: space-between;
}

.philosophy-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem 2rem;
}

.philosophy-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.philosophy-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.team-overview {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.team-overview h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.team-overview p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.services-header {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-detailed {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.service-detail-item {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c7a3e;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7a3e;
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.process-overview {
    padding: 5rem 2rem;
    background-color: #f4f4f4;
}

.process-steps {
    display: flex;
    gap: 2.5rem;
    justify-content: space-between;
}

.process-step {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    text-align: center;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.process-step p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.contact-header {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-info {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #333;
}

.contact-block p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

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

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

.contact-notice {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
}

.contact-notice h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-notice p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.contact-notice a {
    color: #1a5a8a;
    text-decoration: none;
}

.contact-notice a:hover {
    text-decoration: underline;
}

.legal-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: #333;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.legal-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

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

.legal-content ul li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: #1a5a8a;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .split-layout,
    .story-layout,
    .contact-layout,
    .service-detail-item {
        flex-direction: column;
    }

    .problem-grid,
    .benefits-cards,
    .philosophy-cards,
    .process-steps,
    .steps-grid {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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