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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-visual {
    width: 100%;
    background-color: #1a1a1a;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-height: 700px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 30px;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

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

.narrow-content {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 30px;
}

.opening-line {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 26px;
    color: #444;
}

.problem-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

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

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.problem-text p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #555;
}

.problem-visual {
    flex: 1;
    background-color: #e8e8e8;
}

.problem-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-reveal {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 90px 20px;
}

.insight-reveal h2 {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: 700;
}

.insight-reveal p {
    font-size: 19px;
    margin-bottom: 26px;
    opacity: 0.95;
}

.trust-builder {
    padding: 100px 20px;
    background-color: #f4f7f9;
}

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

.trust-content {
    flex: 1;
}

.trust-content h3 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    font-size: 17px;
    margin-bottom: 18px;
    padding-left: 32px;
    position: relative;
    color: #444;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.trust-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.testimonials-inline {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.testimonial {
    background-color: #ffffff;
    padding: 40px 45px;
    margin-bottom: 30px;
    border-left: 5px solid #3498db;
    font-size: 19px;
    font-style: italic;
    color: #2c3e50;
}

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

.product-showcase {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.product-card {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 300px;
    background-color: #f9f9f9;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

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

.science-backed {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.science-backed h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.science-backed p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #555;
}

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

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

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

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

.pricing-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.price-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    max-width: 380px;
    background-color: #f9f9f9;
    padding: 40px 30px;
    border: 2px solid #e0e0e0;
    position: relative;
}

.price-card.featured {
    border-color: #3498db;
    background-color: #f0f8ff;
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #3498db;
    color: #ffffff;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 3px;
}

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

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

.original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-top: -8px;
    display: block;
    margin-bottom: 20px;
}

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

.price-card ul li {
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.price-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 18px;
}

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

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

.order-form-section {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 45px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.selected-service-display {
    background-color: #f0f8ff;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-left: 4px solid #3498db;
    font-size: 16px;
}

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

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

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

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

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

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

.final-reassurance {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.final-reassurance h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.final-reassurance p {
    font-size: 17px;
    color: #555;
}

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

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

.footer-section {
    flex: 1 1 220px;
}

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

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

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

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

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

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

.references {
    list-style: decimal;
    padding-left: 20px;
}

.references li {
    margin-bottom: 8px;
}

.references li a {
    color: #3498db;
    text-decoration: none;
    font-size: 13px;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #e74c3c;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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;
    margin: 0;
}

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

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

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

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

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

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

.page-header {
    background-color: #34495e;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.header-content p {
    font-size: 20px;
    opacity: 0.9;
}

.about-story {
    padding: 100px 20px;
    background-color: #ffffff;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-text p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #555;
}

.story-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.values-section {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

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

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

.value-item {
    flex: 1 1 300px;
    padding: 35px 30px;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
}

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

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

.team-approach {
    padding: 100px 20px;
    background-color: #ffffff;
}

.approach-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-text p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #555;
}

.commitment-section {
    padding: 90px 20px;
    background-color: #ecf0f1;
}

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

.commitment-section p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #555;
}

.services-overview {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 25px;
}

.old-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
    margin-left: 15px;
}

.service-info p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
}

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

.feature-list li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: #444;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-cta {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 13px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

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

.guarantee-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.guarantee-section p {
    font-size: 17px;
    color: #555;
}

.contact-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-image-section {
    flex: 1;
}

.contact-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 30px;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #3498db;
}

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

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

.faq-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.faq-item {
    background-color: #ffffff;
    padding: 30px 35px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
}

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

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

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

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    margin-bottom: 30px;
}

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

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.order-summary {
    background-color: #f0f8ff;
    padding: 30px;
    margin-bottom: 40px;
    border-left: 4px solid #3498db;
    text-align: left;
}

.order-summary h2 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.order-summary p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

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

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 28px;
    position: relative;
    color: #555;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    display: inline-block;
}

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

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

.legal-date {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

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

.legal-container ul li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

    .content-wrapper,
    .split-layout,
    .service-detail-card,
    .contact-container {
        flex-direction: column;
    }

    .content-wrapper.reverse,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

    .price-card {
        max-width: 100%;
    }

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

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