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

.ad-disclosure {
    background: #f8f9fa;
    border-bottom: 1px solid #e1e4e8;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #586069;
    position: relative;
    z-index: 100;
}

.floating-nav {
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #007aff;
}

.hero-visual {
    margin-top: 105px;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 85vh;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 600px;
    opacity: 0.95;
}

.story-intro {
    max-width: 720px;
    margin: 80px auto;
    padding: 0 30px;
}

.story-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 24px;
}

.image-text-offset {
    padding: 100px 40px;
    background: #f7f8fa;
}

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

.offset-image {
    flex: 1;
}

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

.offset-text {
    flex: 1;
}

.offset-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.offset-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.insight-block {
    max-width: 900px;
    margin: 100px auto;
    padding: 60px;
    background: #fafbfc;
    border-left: 4px solid #007aff;
}

.insight-inner h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.insight-inner p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 18px;
}

.insight-inner a {
    color: #007aff;
    text-decoration: none;
}

.insight-inner a:hover {
    text-decoration: underline;
}

.visual-services {
    padding: 100px 40px;
}

.visual-services h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.service-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 24px 24px;
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.6;
}

.testimonial-inline {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 40px;
}

.testimonial-box {
    flex: 1;
    padding: 40px;
    background: #f9fafb;
    border-left: 3px solid #34c759;
}

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

.testimonial-box span {
    font-size: 15px;
    color: #6a6a6a;
    font-style: normal;
}

.trust-visual {
    padding: 100px 40px;
    background: #fafbfc;
}

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.trust-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.trust-image {
    flex: 1;
}

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

.pricing-reveal {
    padding: 100px 40px;
    background: #ffffff;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.pricing-header p {
    font-size: 18px;
    color: #6a6a6a;
}

.pricing-options {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.price-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 40px;
    background: white;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
}

.price-card:hover {
    border-color: #007aff;
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.1);
}

.price-card.featured {
    border-color: #007aff;
    background: #f8fbff;
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #007aff;
    margin-bottom: 24px;
}

.price-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.price-card li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #4a4a4a;
}

.price-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #34c759;
    font-weight: 700;
}

.select-service {
    width: 100%;
    padding: 14px 24px;
    background: #007aff;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.select-service:hover {
    background: #0051d5;
}

.order-form {
    padding: 100px 40px;
    background: #f7f8fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.selected-service-display {
    font-size: 16px;
    color: #6a6a6a;
    margin-bottom: 30px;
}

.selected-service-display span {
    font-weight: 600;
    color: #007aff;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #007aff;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #0051d5;
}

.disclaimer-section {
    padding: 60px 40px;
    background: #fffbf0;
    border-top: 2px solid #fbbf24;
    border-bottom: 2px solid #fbbf24;
}

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

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #92400e;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #78350f;
}

.scientific-references {
    padding: 60px 40px;
    background: #f9fafb;
}

.references-inner {
    max-width: 900px;
    margin: 0 auto;
}

.references-inner h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.references-inner ol {
    list-style: decimal;
    padding-left: 24px;
}

.references-inner li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.references-inner a {
    color: #007aff;
    text-decoration: none;
}

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

.site-footer {
    background: #1a1a1a;
    color: #e5e5e5;
    padding: 60px 40px 30px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col a {
    color: #b5b5b5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid #3a3a3a;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #8a8a8a;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: white;
    padding: 24px 40px;
    z-index: 1000;
    box-shadow: 0 -4px 12px 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 {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-accept {
    background: #34c759;
    color: white;
}

.cookie-accept:hover {
    background: #2da94d;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero {
    margin-top: 105px;
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: white;
    font-weight: 700;
}

.about-content,
.contact-content,
.services-detail {
    padding: 80px 40px;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.about-image {
    flex: 1;
}

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

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

.about-values h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    padding: 30px;
    background: #f9fafb;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
}

.about-process {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.about-process h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-step {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: white;
    border: 2px solid #e5e7eb;
}

.step-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #007aff;
    background: #f0f8ff;
    padding: 6px 12px;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
}

.about-team-image {
    max-width: 1400px;
    margin: 0 auto 80px;
}

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

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

.about-mission h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-mission p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 18px;
}

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #007aff;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007aff;
    font-size: 24px;
    line-height: 1;
}

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

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

.services-cta {
    padding: 80px 40px;
    background: #f7f8fa;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-box p {
    font-size: 18px;
    color: #6a6a6a;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #007aff;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #0051d5;
}

.contact-info-block {
    max-width: 900px;
    margin: 0 auto 60px;
    display: flex;
    gap: 40px;
}

.contact-item {
    flex: 1;
    padding: 30px;
    background: #f9fafb;
}

.contact-item h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.contact-note {
    max-width: 900px;
    margin: 0 auto;
}

.contact-note h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-note p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.thanks-hero {
    margin-top: 105px;
    padding: 100px 40px;
    background: linear-gradient(135deg, #34c759 0%, #30b455 100%);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    color: white;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.thanks-content > p {
    font-size: 22px;
    margin-bottom: 40px;
}

.thanks-details {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.thanks-next {
    background: white;
    color: #1a1a1a;
    padding: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.thanks-next ul {
    list-style: none;
}

.thanks-next li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
}

.thanks-next li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #34c759;
    font-weight: 700;
}

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

.back-button,
.explore-button {
    padding: 16px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
}

.back-button {
    background: white;
    color: #34c759;
}

.back-button:hover {
    background: #f0f0f0;
}

.explore-button {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.explore-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.legal-content {
    padding: 60px 40px;
}

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

.legal-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2a2a2a;
}

.legal-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.legal-text ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-text li {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.legal-text a {
    color: #007aff;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .offset-container,
    .about-block,
    .trust-content,
    .service-detail-item {
        flex-direction: column;
    }

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

    .service-grid,
    .pricing-options {
        flex-direction: column;
    }

    .testimonial-inline,
    .contact-info-block,
    .values-grid {
        flex-direction: column;
    }

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

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