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

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

.ad-disclosure {
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 33px;
    z-index: 999;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c5aa0;
}

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

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

.nav-menu a:hover {
    color: #2c5aa0;
}

.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #34495e;
}

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

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

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

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    font-weight: 300;
}

.story-intro {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.narrow-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555555;
}

.problem-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.text-block h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.text-block p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #555555;
}

.text-block ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.text-block ul li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #555555;
}

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

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

.solution-reveal {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.solution-reveal img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 30px 0;
    object-fit: cover;
    background-color: #bdc3c7;
}

.benefits-section {
    padding: 80px 20px;
    background-color: #2c5aa0;
    color: #ffffff;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
}

.benefit-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 17px;
    line-height: 1.6;
}

.trust-building {
    padding: 80px 20px;
    background-color: #ffffff;
}

.testimonials-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #ffffff;
    padding: 30px;
    border-left: 4px solid #2c5aa0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    color: #555555;
}

.testimonial-author {
    font-weight: 600;
    font-style: normal;
    color: #2c3e50;
}

.how-it-works {
    padding: 80px 20px;
    background-color: #ffffff;
}

.scientific-backing {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.scientific-backing a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

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

.services-pricing {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555555;
}

.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555555;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: #2c5aa0;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #1e3a6f;
}

.form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #555555;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    background-color: #ffffff;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.final-cta {
    padding: 80px 20px;
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #ecf0f1;
}

.disclaimer {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: justify;
}

.references-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.references-list {
    margin-left: 25px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
}

.references-list a {
    color: #2c5aa0;
    text-decoration: none;
}

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

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
}

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

.footer-column {
    flex: 1 1 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    margin: 0;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cookie-btn.accept:hover {
    background-color: #1e8449;
}

.cookie-btn.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #5d6d7e;
}

.page-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #34495e 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.header-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.header-content p {
    font-size: 20px;
    font-weight: 300;
}

.about-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.mission-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.values-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5aa0;
}

.value-card p {
    font-size: 16px;
    color: #555555;
}

.team-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.experience-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.commitment-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.services-intro {
    padding: 60px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #555555;
}

.detailed-services {
    padding: 40px 20px 80px;
    background-color: #ffffff;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-image {
    flex: 0 0 45%;
    background-color: #e8ebed;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-info p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555555;
}

.service-info h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-info ul li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #555555;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1e8449;
}

.contact-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 0 0 35%;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5aa0;
}

.contact-item p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
}

.contact-text-block {
    flex: 1;
}

.contact-text-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-text-block h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-text-block p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555555;
}

.contact-services-list {
    margin-left: 25px;
    margin-bottom: 25px;
}

.contact-services-list li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555555;
}

.map-section {
    padding: 60px 20px 80px;
    background-color: #f8f9fa;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555555;
}

.service-info-box {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: none;
}

.service-info-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.selected-service {
    font-size: 18px;
    font-weight: 600;
    color: #27ae60;
    margin: 0;
}

.next-steps {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.steps-list {
    margin-left: 25px;
}

.steps-list li {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555555;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #2c5aa0;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1e3a6f;
}

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

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

.contact-reminder {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
}

.contact-reminder p {
    font-size: 16px;
    color: #555555;
    margin: 0;
}

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

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-intro {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555555;
    line-height: 1.7;
}

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

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555555;
    line-height: 1.6;
}

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

.legal-content ol li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555555;
    line-height: 1.6;
}

.legal-content a {
    color: #2c5aa0;
    text-decoration: none;
}

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

.legal-content strong {
    color: #2c3e50;
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

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

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

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

    .testimonials-container {
        flex-direction: column;
    }

    .testimonial {
        flex: 1 1 100%;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

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

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

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

    .service-image {
        flex: 1 1 100%;
    }

    .contact-layout {
        flex-direction: column;
    }

    .contact-info-block {
        flex: 1 1 100%;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}