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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

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

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

.cookie-btn.reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.header-minimal {
    padding: 20px 0;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

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

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-text-narrow h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-text-narrow p {
    font-size: 20px;
    line-height: 1.6;
}

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

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

.problem-reveal {
    padding: 100px 0;
}

.split-asymmetric {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-asymmetric .text-block {
    flex: 1.2;
}

.split-asymmetric .visual-block {
    flex: 1;
}

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

.split-asymmetric p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.visual-block img {
    width: 100%;
    border-radius: 8px;
}

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

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

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

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
}

.insight-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.trust-building {
    padding: 100px 0;
}

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

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

.trust-card:hover {
    transform: translateY(-4px);
}

.trust-card img {
    width: 100%;
    display: block;
}

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

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 20px 20px;
    color: #34495e;
}

.testimonial-inline {
    padding: 60px 0;
    background: #f8f9fa;
}

.testimonial-inline blockquote {
    border-left: 4px solid #3498db;
    padding-left: 30px;
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    color: #34495e;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

.benefits-reveal {
    padding: 100px 0;
}

.benefits-reveal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.benefits-stacked {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.benefit-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

.benefit-item.reverse {
    flex-direction: row-reverse;
}

.benefit-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.benefit-visual img {
    width: 100%;
    display: block;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.benefit-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
}

.services-pricing {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 60px;
}

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

.pricing-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #3498db;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: #3498db;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: #3498db;
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

.pricing-card > p {
    font-size: 15px;
    line-height: 1.6;
    color: #7f8c8d;
    margin-bottom: 24px;
    min-height: 75px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 15px;
    color: #34495e;
}

.features li:last-child {
    border-bottom: none;
}

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

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

.form-section {
    padding: 100px 0;
}

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

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

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

.service-display {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: none;
}

.service-display.active {
    display: block;
}

.service-display p {
    margin: 0;
    font-size: 16px;
    color: #2c3e50;
}

.service-display strong {
    color: #3498db;
}

.wellness-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

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

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

.disclaimer-section {
    padding: 60px 0;
    background: #fff3cd;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-left: 4px solid #ff9800;
    border-radius: 8px;
}

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

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #34495e;
}

.references-section {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.references-list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #34495e;
}

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

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

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

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
}

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

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

.thanks-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 16px;
}

.thanks-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: left;
}

.thanks-details h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #d0d0d0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #2c3e50;
}

.detail-value {
    color: #34495e;
}

.back-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.contact-page {
    padding: 100px 0;
}

.contact-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 30px;
}

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

.info-block p {
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 12px;
}

.legal-page {
    padding: 80px 0;
}

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

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

.legal-content .last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 30px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 8px;
}

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

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 22px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

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

.about-section {
    margin-bottom: 60px;
}

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

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 16px;
}

.services-page-hero {
    padding: 100px 0 60px;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-page-hero p {
    font-size: 20px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
}

.services-detail {
    padding: 60px 0;
}

.service-card-full {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
}

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

.service-card-full .price-tag {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.service-card-full p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.service-card-full ul {
    margin: 20px 0 20px 30px;
}

.service-card-full li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 10px;
}

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

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

    .split-asymmetric {
        flex-direction: column;
    }

    .benefit-item,
    .benefit-item.reverse {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .hero-text-narrow h1 {
        font-size: 28px;
    }

    .hero-text-narrow p {
        font-size: 16px;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
    }
}