* {
    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: #2c2c2c;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f8f8;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.floating-nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 50px;
}

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

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

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

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

.hero-visual {
    margin-top: 0;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #1a1a1a;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 300;
    opacity: 0.95;
}

.story-intro {
    padding: 120px 40px;
    background-color: #fafafa;
}

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

.lead-text {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.5;
}

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

.problem-section {
    padding: 100px 40px;
    background-color: #fff;
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.image-block {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-reveal {
    padding: 140px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.centered-insight h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}

.centered-insight p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.inline-cta {
    margin-top: 50px;
}

.cta-link {
    display: inline-block;
    padding: 18px 45px;
    background-color: #fff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.visual-story {
    padding: 80px 40px;
    background-color: #fafafa;
}

.image-grid-custom {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.grid-item {
    flex: 1;
    min-width: 300px;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.grid-item.large {
    flex: 2;
}

.grid-item img {
    width: 100%;
    height: 100%;
    display: block;
    min-height: 400px;
}

.testimonials-inline {
    padding: 100px 40px;
    background-color: #fff;
}

.testimonial {
    margin-bottom: 50px;
    padding: 40px;
    background-color: #f8f8f8;
    border-left: 4px solid #667eea;
    border-radius: 4px;
}

.testimonial p {
    font-size: 20px;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.benefits-reveal {
    padding: 120px 40px;
    background-color: #1a1a1a;
    color: #fff;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
}

.benefits-cards {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #2a2a2a;
    border-radius: 8px;
}

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

.benefit-card p {
    font-size: 16px;
    color: #b8b8b8;
    line-height: 1.7;
}

.services-pricing {
    padding: 120px 40px;
    background-color: #fff;
}

.services-pricing .section-title {
    color: #1a1a1a;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: #fafafa;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

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

.price {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 25px;
}

.select-service-btn {
    width: 100%;
    padding: 15px;
    background-color: #667eea;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #5568d3;
}

.form-section {
    padding: 100px 40px;
    background-color: #fafafa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

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

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.submit-btn {
    padding: 16px;
    background-color: #667eea;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.scientific-references {
    padding: 80px 40px;
    background-color: #fff;
}

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

.references-list {
    list-style-position: inside;
    line-height: 1.8;
}

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

.references-list a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: #5568d3;
    text-decoration: underline;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f8f8f8;
}

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

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

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

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 25px 40px;
    box-shadow: 0 -5px 20px 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;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #667eea;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #667eea;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #5568d3;
}

.cookie-reject {
    background-color: #4a4a4a;
    color: #fff;
}

.cookie-reject:hover {
    background-color: #666;
}

.page-header {
    padding: 180px 40px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 700;
}

.about-content {
    padding: 100px 40px;
    background-color: #fff;
}

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

.about-text {
    flex: 1.2;
}

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

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

.about-image {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    padding: 100px 40px;
    background-color: #fafafa;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

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

.value-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

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

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

.service-detail-image {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-top: 30px;
}

.contact-info-section {
    padding: 80px 40px;
    background-color: #fff;
}

.contact-grid {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-info-block > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #4a4a4a;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.contact-image-block {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.location-section {
    padding: 60px 40px;
    background-color: #fafafa;
    text-align: center;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.location-section p {
    font-size: 17px;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.thanks-section {
    padding: 180px 40px 120px;
    background-color: #fafafa;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    padding: 70px 50px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    font-size: 80px;
    color: #4caf50;
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    color: #667eea;
    margin-bottom: 25px;
    font-weight: 600;
}

.thanks-container p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background-color: #667eea;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #4a4a4a;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.legal-content {
    padding: 80px 40px;
    background-color: #fff;
}

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

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

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

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

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

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

.legal-text a {
    color: #667eea;
    text-decoration: none;
}

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

.legal-update {
    margin-top: 50px;
    font-size: 14px;
    color: #888;
    font-style: italic;
}

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

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .offset-layout,
    .about-layout,
    .contact-grid,
    .service-detail {
        flex-direction: column;
    }

    .image-grid-custom {
        flex-direction: column;
    }

    .benefits-cards,
    .services-grid,
    .values-grid {
        flex-direction: column;
    }

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

    .section-title {
        font-size: 36px;
    }
}
