* {
    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;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

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

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #1a73e8;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a2332;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    padding: 40px;
    max-width: 800px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
}

.intro-section,
.insight-section,
.trust-section,
.testimonials-section,
.cta-section,
.disclaimer-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a2332;
    line-height: 1.3;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #4a5568;
}

.problem-section,
.benefits-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

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

.text-block {
    flex: 1;
}

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

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

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 1.1rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
    font-size: 1.3rem;
}

.insight-cards,
.trust-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.insight-card,
.trust-item {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.insight-card h3,
.trust-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a73e8;
}

.story-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.story-section img {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
    background-color: #e9ecef;
}

.citation {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.citation:hover {
    opacity: 0.7;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.testimonial {
    padding: 35px;
    background-color: #f8f9fa;
    border-left: 4px solid #1a73e8;
    font-style: italic;
}

.testimonial p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #1a73e8;
}

.science-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.programs-preview {
    padding: 80px 40px;
    background-color: #ffffff;
}

.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.program-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.program-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.program-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e9ecef;
}

.program-card h3 {
    font-size: 1.6rem;
    margin: 20px 20px 10px 20px;
    color: #1a2332;
}

.program-card p {
    margin: 0 20px 15px 20px;
    font-size: 1rem;
}

.program-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a73e8;
    margin: 15px 20px;
}

.btn-select-program {
    width: calc(100% - 40px);
    margin: 20px;
    padding: 15px;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-program:hover {
    background-color: #1557b0;
}

.form-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    padding: 15px;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.btn-submit:disabled {
    background-color: #cbd5e0;
    cursor: not-allowed;
}

.disclaimer-section {
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

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

.footer-main {
    background-color: #1a2332;
    color: #ffffff;
    padding: 60px 40px 30px 40px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ffffff;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.references-list {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #a0aec0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 25px 40px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

.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 {
    margin: 0;
    flex: 1;
    color: #ffffff;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #1a73e8;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1557b0;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a2332;
}

.page-hero {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    color: #ffffff;
    padding: 100px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-hero p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
}

.about-intro {
    padding: 80px 40px;
    background-color: #ffffff;
}

.about-intro .content-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-intro img {
    flex: 1;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    background-color: #e9ecef;
}

.about-text {
    flex: 1;
}

.philosophy-section,
.methodology-section,
.values-section,
.commitment-section {
    padding: 80px 40px;
}

.philosophy-section {
    background-color: #f8f9fa;
}

.methodology-section {
    background-color: #ffffff;
}

.values-section {
    background-color: #f8f9fa;
}

.commitment-section {
    background-color: #ffffff;
}

.principles-list,
.methodology-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.principle-item,
.method-card {
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #1a73e8;
}

.methodology-grid {
    flex-direction: row;
    flex-wrap: wrap;
}

.method-card {
    flex: 1 1 calc(50% - 15px);
    border-left: none;
    border-top: 4px solid #1a73e8;
}

.services-intro {
    padding: 40px 40px 0 40px;
    text-align: center;
}

.services-list {
    padding: 60px 40px;
}

.service-item {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e9ecef;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-image {
    flex: 0 0 400px;
    background-color: #e9ecef;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1a2332;
}

.service-details ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-details ul li {
    margin-bottom: 10px;
}

.contact-section {
    padding: 80px 40px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a73e8;
}

.info-item p {
    margin-bottom: 5px;
}

.info-note {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

.faq-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a2332;
}

.thanks-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 120px 40px;
    text-align: center;
    color: #ffffff;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.thanks-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #ffffff;
    opacity: 0.9;
}

.thanks-details {
    font-size: 1.1rem;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.next-steps,
.preparation-section {
    padding: 80px 40px;
}

.next-steps {
    background-color: #ffffff;
}

.preparation-section {
    background-color: #f8f9fa;
}

.steps-timeline {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

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

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1a2332;
}

.preparation-tips {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.tip-card {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border-top: 4px solid #1a73e8;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a2332;
}

.contact-reminder {
    padding: 80px 40px;
    background-color: #ffffff;
    text-align: center;
}

.contact-email {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a73e8;
    margin: 20px 0;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.last-updated {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a2332;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2d3748;
}

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

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

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e9ecef;
}

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

@media (max-width: 768px) {
    .navigation {
        padding: 15px 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
    }

    .insight-cards,
    .trust-grid,
    .contact-grid,
    .preparation-tips {
        flex-direction: column;
    }

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

    .program-card {
        flex: 1 1 100%;
    }

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

    .about-intro .content-wrapper {
        flex-direction: column;
    }

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

    .method-card {
        flex: 1 1 100%;
    }

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

    .service-image {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
    }
}