* {
    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 {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: #2c3e50;
    display: block;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-section {
    padding: 80px 24px;
    background-color: #f8f9fa;
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #3498db;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.intro-story {
    padding: 80px 24px;
    background-color: #ffffff;
}

.intro-story h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    text-align: center;
}

.intro-story p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.intro-story a {
    color: #3498db;
    text-decoration: underline;
}

.services-cards {
    padding: 80px 24px;
    background-color: #f8f9fa;
}

.services-cards h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 360px;
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.card-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

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

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

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #888;
    font-weight: 600;
}

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

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

.selected-service-display {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    border: 2px solid #3498db;
}

.selection-info {
    font-size: 16px;
    color: #2c3e50;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-notice {
    margin-bottom: 24px;
    font-size: 13px;
    color: #666;
}

.form-notice a {
    color: #3498db;
    text-decoration: underline;
}

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

.science-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.science-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.science-section a {
    color: #3498db;
    text-decoration: underline;
}

.disclaimer-section {
    padding: 60px 24px;
    background-color: #fff9e6;
}

.disclaimer-box {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #f0c419;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 24px 24px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.footer-references {
    margin-bottom: 32px;
    padding-top: 32px;
    border-top: 1px solid #34495e;
}

.footer-references h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-references ol {
    list-style-position: inside;
    font-size: 13px;
    line-height: 1.8;
    color: #bdc3c7;
}

.footer-references a {
    color: #3498db;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.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: 2000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: #bdc3c7;
}

.about-content {
    padding: 80px 24px;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: 400px;
}

.values-section {
    padding: 80px 24px;
    background-color: #f8f9fa;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.value-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

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

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.approach-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

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

.approach-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.criteria-list {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 24px;
}

.criteria-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #555;
}

.team-philosophy {
    padding: 80px 24px;
    background-color: #f8f9fa;
}

.philosophy-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.philosophy-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.philosophy-image img {
    width: 100%;
    height: 400px;
}

.philosophy-text {
    flex: 1;
}

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

.philosophy-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

.services-detailed {
    padding: 60px 24px;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-grid {
    display: flex;
    gap: 48px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
    width: 100%;
    height: 350px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.feature-list {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 24px;
}

.feature-list li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #666;
}

.pricing-info {
    padding: 60px 24px;
    background-color: #f8f9fa;
}

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

.pricing-info p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #555;
}

.contact-section {
    padding: 60px 24px;
}

.contact-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-info-card {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.contact-info-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.contact-note {
    font-size: 14px;
    color: #888;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.hours-row .day {
    font-weight: 600;
    color: #2c3e50;
}

.hours-row .time {
    color: #555;
}

.contact-note-section {
    padding: 60px 24px;
    background-color: #f8f9fa;
}

.contact-note-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-note-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

.contact-note-section a {
    color: #3498db;
    text-decoration: underline;
}

.map-placeholder {
    padding: 60px 24px;
    background-color: #ffffff;
}

.map-info {
    background-color: #e8f4f8;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.map-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.map-info p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

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

.thanks-content {
    text-align: center;
}

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

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

.thanks-content > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.order-summary {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 2px solid #3498db;
    text-align: left;
}

.next-steps {
    margin-bottom: 40px;
    text-align: left;
}

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

.steps-list {
    list-style-position: inside;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.steps-list li {
    margin-bottom: 12px;
}

.thanks-note {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

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

.legal-page ul {
    list-style-type: disc;
}

.legal-page ol {
    list-style-type: decimal;
}

.legal-page li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #555;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

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

.gdpr-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.gdpr-table td {
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 16px 24px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-text h1 {
        font-size: 36px;
    }

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

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

    .about-grid,
    .philosophy-grid,
    .service-detail-grid {
        flex-direction: column;
    }

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

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

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

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

    .page-header h1 {
        font-size: 32px;
    }
}
