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

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

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-nav {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
}

.ad-notice {
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #6c757d;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem;
    background-color: #f8f9fa;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #495057;
}

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    color: #ffffff;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
}

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

.intro-split {
    display: flex;
    margin: 4rem 0;
}

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

.split-image,
.split-content {
    flex: 1;
}

.split-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

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

.split-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    margin-bottom: 1.5rem;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-highlight {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header-center h2 {
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #6c757d;
}

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

.service-card-split {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.service-card-image,
.service-card-content {
    flex: 1;
}

.service-card-image {
    position: relative;
    min-height: 300px;
}

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

.service-card-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-card-content p {
    margin-bottom: 1.5rem;
    color: #495057;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2980b9;
}

.approach-split {
    display: flex;
    margin: 4rem 0;
}

.testimonials-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #6c757d;
}

.form-section-split {
    display: flex;
    margin: 4rem 0;
    background-color: #f8f9fa;
}

.form-left,
.form-right {
    flex: 1;
    padding: 4rem;
}

.form-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-benefits {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.contact-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.disclaimer-section {
    padding: 2rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    margin: 2rem 0;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #856404;
}

.references-section {
    padding: 2rem;
    background-color: #f8f9fa;
    margin: 2rem 0;
}

.references-section h3 {
    margin-bottom: 1rem;
}

.references-list {
    padding-left: 2rem;
}

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

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

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

.footer-column h4 {
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: #ecf0f1;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

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

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

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

.cookie-content a {
    color: #3498db;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.page-hero-split {
    display: flex;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    gap: 4rem;
    align-items: center;
}

.hero-content-left {
    flex: 1;
}

.hero-image-right {
    flex: 1;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-split {
    display: flex;
    margin: 4rem 0;
}

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

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

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

.team-member-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.team-role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.values-split {
    display: flex;
    margin: 4rem 0;
    background-color: #f8f9fa;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.approach-detail {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.approach-detail h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.approach-step {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.cta-section-centered {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f8f9fa;
}

.cta-section-centered h2 {
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.page-intro-full {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f8f9fa;
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    margin: 4rem 0;
}

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

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

.service-detail-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-image {
    min-height: 500px;
    overflow: hidden;
}

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

.service-features {
    margin: 2rem 0;
}

.service-features h3 {
    margin-bottom: 1rem;
}

.service-features ul {
    padding-left: 2rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-pricing-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.price-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.scientific-note {
    background-color: #e7f3ff;
    padding: 1rem;
    border-left: 4px solid #3498db;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.faq-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-cta-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #ffffff;
}

.service-cta-section h2 {
    margin-bottom: 1rem;
}

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

.contact-page-header {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f8f9fa;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-split {
    display: flex;
    margin: 4rem 0;
}

.contact-details {
    flex: 1;
    padding: 4rem;
}

.contact-image-area {
    flex: 1;
    min-height: 500px;
    overflow: hidden;
}

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

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

.contact-block h3 {
    margin-bottom: 0.5rem;
    color: #3498db;
}

.contact-value {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-note {
    font-size: 0.95rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

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

.response-info h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.response-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.alternative-contact {
    padding: 4rem 2rem;
    text-align: center;
}

.alternative-contact h2 {
    margin-bottom: 1rem;
}

.alternative-contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.alt-contact-links {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
}

.link-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.link-card h3 {
    color: #3498db;
    margin-bottom: 0.5rem;
}

.contact-disclaimer {
    padding: 2rem;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    margin: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-disclaimer h3 {
    margin-bottom: 1rem;
    color: #856404;
}

.contact-disclaimer ul {
    padding-left: 2rem;
    margin-top: 1rem;
}

.contact-disclaimer li {
    margin-bottom: 0.5rem;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-main-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #e7f3ff;
    padding: 1rem;
    border-radius: 6px;
    margin: 2rem 0;
    font-weight: 600;
}

.thanks-next-steps {
    margin: 3rem 0;
}

.thanks-next-steps h2 {
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-text h3 {
    margin-bottom: 0.5rem;
}

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

.thanks-note {
    background-color: #fff3cd;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    margin-bottom: 1rem;
}

.legal-updated {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page ul,
.legal-page ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.legal-back-link {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

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

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.cookie-settings-reset {
    margin: 2rem 0;
}

.text-link {
    color: #3498db;
    font-weight: 600;
    text-decoration: underline;
}

.text-link:hover {
    color: #2980b9;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-split,
    .intro-split,
    .approach-split,
    .form-section-split,
    .story-split,
    .values-split,
    .service-detail-split,
    .contact-info-split,
    .page-hero-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .story-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-content,
    .split-image,
    .form-left,
    .form-right,
    .hero-content-left,
    .hero-image-right,
    .service-detail-content,
    .service-detail-image,
    .contact-details,
    .contact-image-area {
        padding: 2rem;
    }

    .testimonials-split,
    .team-split-layout,
    .approach-grid,
    .response-grid,
    .alt-contact-links {
        flex-direction: column;
    }

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

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

    .faq-item {
        flex: 1 1 100%;
    }

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

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

    .cta-buttons {
        flex-direction: column;
    }

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