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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #ffffff;
}

.hero-content-left {
    flex: 1;
    padding: 5rem 5% 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-content-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #546e7a;
    max-width: 540px;
}

.hero-image-right {
    flex: 1;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #34495e;
}

.intro-asymmetric {
    display: flex;
    gap: 4rem;
    padding: 6rem 8%;
    background-color: #f8f9fa;
    align-items: center;
}

.intro-text-offset {
    flex: 1.2;
}

.intro-text-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-text-offset p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #546e7a;
}

.intro-visual {
    flex: 0.8;
    background-color: #e8eaed;
}

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

.services-cards {
    padding: 5rem 8%;
    background-color: #ffffff;
}

.services-cards h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.8rem;
    color: #1a252f;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0;
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 0.8rem;
    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem;
    color: #546e7a;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    padding: 1rem 1.5rem 0.5rem;
}

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

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

.form-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 8%;
    background-color: #f0f4f8;
}

.form-container-left {
    flex: 1.3;
}

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

.registration-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.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.8rem;
    border: 1px solid #cbd5e0;
    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 {
    width: 100%;
    padding: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-info-right {
    flex: 0.7;
    padding: 2rem 0;
}

.form-info-right h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-info-right p {
    margin-bottom: 1rem;
    color: #546e7a;
    line-height: 1.7;
}

.testimonials-flow {
    padding: 5rem 8%;
    background-color: #ffffff;
}

.testimonials-flow h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.testimonial-single {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.testimonial-single p {
    font-size: 1.1rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-single cite {
    display: block;
    text-align: right;
    font-style: normal;
    font-weight: 600;
    color: #546e7a;
}

.science-references {
    padding: 4rem 8%;
    background-color: #ecf0f1;
}

.science-references h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.science-references p {
    max-width: 900px;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
}

.science-references a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.science-references a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 3rem 8%;
    background-color: #fff3cd;
    border-top: 2px solid #ffc107;
    border-bottom: 2px solid #ffc107;
}

.disclaimer-section p {
    font-size: 0.9rem;
    color: #856404;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-extended {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 8% 1rem;
}

.footer-columns {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-references {
    padding: 2rem 0;
    border-top: 1px solid #34495e;
    margin-bottom: 1.5rem;
}

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

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

.footer-references ol li {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-references ol li a {
    color: #3498db;
    text-decoration: none;
}

.footer-references ol li a:hover {
    text-decoration: underline;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    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;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie,
.btn-cookie-secondary {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie {
    background-color: #27ae60;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #229954;
}

.btn-cookie-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.about-hero {
    padding: 5rem 8%;
    background-color: #f8f9fa;
    text-align: center;
}

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

.about-hero p {
    font-size: 1.2rem;
    color: #546e7a;
    max-width: 800px;
    margin: 0 auto;
}

.about-split-content {
    display: flex;
    gap: 4rem;
    padding: 5rem 8%;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #e8eaed;
}

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

.values-asymmetric {
    padding: 5rem 8%;
    background-color: #f0f4f8;
}

.values-asymmetric h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.value-item p {
    color: #546e7a;
    line-height: 1.7;
}

.team-section,
.approach-section {
    padding: 5rem 8%;
    background-color: #ffffff;
}

.team-section h2,
.approach-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.team-section p,
.approach-section p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    max-width: 900px;
}

.approach-content {
    max-width: 900px;
}

.services-intro {
    padding: 5rem 8%;
    background-color: #f8f9fa;
    text-align: center;
}

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

.services-intro p {
    font-size: 1.1rem;
    color: #546e7a;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-list {
    padding: 3rem 8%;
}

.service-detail {
    display: flex;
    gap: 4rem;
    padding: 4rem 0;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
}

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

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

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

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

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #2c3e50;
}

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

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.6rem;
    color: #546e7a;
    line-height: 1.6;
}

.service-price-box {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 1.5rem 0;
}

.price-label {
    font-size: 1rem;
    color: #7f8c8d;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

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

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

.cta-services {
    padding: 5rem 8%;
    background-color: #f0f4f8;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.cta-services p {
    font-size: 1.1rem;
    color: #546e7a;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.contact-intro {
    padding: 5rem 8%;
    background-color: #f8f9fa;
    text-align: center;
}

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

.contact-intro p {
    font-size: 1.1rem;
    color: #546e7a;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-layout {
    display: flex;
    gap: 4rem;
    padding: 5rem 8%;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

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

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

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

.contact-item p {
    font-size: 1.05rem;
    color: #546e7a;
    line-height: 1.7;
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.contact-note p {
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.6;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e8eaed;
}

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

.additional-info {
    padding: 5rem 8%;
    background-color: #f0f4f8;
}

.additional-info h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a252f;
}

.info-grid {
    display: flex;
    gap: 2rem;
}

.info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-card p {
    color: #546e7a;
    line-height: 1.7;
}

.thanks-hero {
    display: flex;
    gap: 4rem;
    padding: 5rem 8%;
    align-items: center;
    background-color: #f0f8ff;
}

.thanks-content {
    flex: 1.2;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    background-color: #ffffff;
    padding: 1.5rem;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
    margin: 2rem 0;
}

.service-confirmation h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.service-confirmation p {
    font-size: 1rem;
    color: #546e7a;
    margin: 0;
}

.next-steps {
    margin: 2.5rem 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.next-steps ol {
    margin-left: 1.5rem;
}

.next-steps ol li {
    margin-bottom: 0.8rem;
    color: #546e7a;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #34495e;
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.thanks-image {
    flex: 0.8;
    background-color: #e8eaed;
}

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

.legal-content {
    padding: 5rem 8%;
    max-width: 1000px;
    margin: 0 auto;
}

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

.updated-date {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #34495e;
}

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

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 0.6rem;
    color: #546e7a;
    line-height: 1.6;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-split,
    .intro-asymmetric,
    .about-split-content,
    .form-split,
    .contact-info-layout,
    .thanks-hero,
    .service-detail {
        flex-direction: column;
    }

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

    .footer-columns,
    .info-grid,
    .values-grid {
        flex-direction: column;
    }

    .cards-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 500px;
    }

    .hero-content-left h1,
    .about-hero h1,
    .services-intro h1,
    .contact-intro h1 {
        font-size: 2rem;
    }

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