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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    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;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #229954;
}

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

.btn-reject:hover {
    background: #7f8c8d;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.main-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.ad-notice {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.5rem 1rem;
    border: 1px solid #ecf0f1;
    border-radius: 4px;
    background: #f8f9fa;
}

.hero-visual {
    position: relative;
    width: 100%;
    margin-bottom: 4rem;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    max-width: 700px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

.narrow-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.story-intro {
    background: #f8f9fa;
}

.intro-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.8;
}

.narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
}

.problem-section,
.trust-build {
    padding: 5rem 2rem;
}

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

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

.text-side {
    flex: 1;
    min-width: 300px;
}

.text-side h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.text-side p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #34495e;
}

.emphasis-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2rem;
}

.image-side {
    flex: 1;
    min-width: 300px;
}

.image-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #ecf0f1;
    object-fit: cover;
}

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

.insight-reveal h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.insight-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.insight-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.visual-break {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #95a5a6;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-inline {
    background: #34495e;
    color: #ffffff;
}

.testimonial {
    margin-bottom: 3rem;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.quote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.author {
    font-size: 1rem;
    opacity: 0.8;
}

.benefits-expand {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.benefit-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.benefit-card h3 {
    font-size: 1.4rem;
    padding: 1.5rem 1.5rem 0.8rem;
    color: #2c3e50;
}

.benefit-card p {
    padding: 0 1.5rem 1.5rem;
    color: #34495e;
    font-size: 1rem;
    line-height: 1.6;
}

.science-section {
    background: #ecf0f1;
}

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

.reference {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.reference:hover {
    text-decoration: underline;
}

.offering-reveal {
    padding: 5rem 2rem;
}

.offering-reveal .narrow-content {
    padding: 0 2rem 3rem;
}

.intro-offer {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
}

.product-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.product-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.product-item:nth-child(even) {
    flex-direction: row-reverse;
}

.product-item.selected {
    background: #e8f4f8;
    border: 2px solid #3498db;
}

.product-visual {
    flex: 1;
    min-width: 300px;
}

.product-visual img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    background-color: #ecf0f1;
    object-fit: cover;
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.product-info p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.7;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.select-service {
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.select-service.selected {
    background: #27ae60;
}

.form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro {
    color: #34495e;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ecf0f1;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #229954;
    transform: translateY(-2px);
}

.final-cta {
    background: #34495e;
    color: #ffffff;
}

.final-cta h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

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

.footer-section p,
.footer-section a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.references-section {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.references-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.references-section p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.references-section a {
    color: #3498db;
    text-decoration: none;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
}

.thanks-container {
    max-width: 700px;
    margin: 6rem auto;
    padding: 3rem;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.services-grid {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-card-content {
    padding: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.page-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #34495e;
}

.page-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #34495e;
}

.page-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.page-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-info {
    max-width: 700px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-block p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

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

    .product-item,
    .product-item:nth-child(even) {
        flex-direction: column;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .text-side h2 {
        font-size: 1.8rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}