/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

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

a {
    color: #1a5490;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3a6b;
}

/* Advertising Disclosure */
.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
    font-family: Arial, sans-serif;
}

/* Navigation - Minimal Top */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #1a5490;
    font-family: Arial, sans-serif;
}

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

.nav-links a {
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: #444;
    transition: color 0.3s ease;
}

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

/* Editorial Story Layout */
.story-flow {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 30px;
}

.hero-story {
    margin-bottom: 80px;
}

.hero-content-narrow {
    text-align: center;
    margin-bottom: 50px;
}

.hero-story h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 600;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.hero-image-inline {
    margin: 50px 0;
    background-color: #e8e8e8;
}

.hero-image-inline img {
    width: 100%;
    border-radius: 4px;
}

/* Content Sections */
.narrative-section,
.problem-section,
.insight-section,
.trust-building {
    margin-bottom: 70px;
}

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

.content-narrow h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.3;
}

.content-narrow h3 {
    font-size: 26px;
    margin: 35px 0 20px;
    color: #2a2a2a;
    font-weight: 600;
}

.content-narrow p {
    margin-bottom: 25px;
}

.content-narrow ul,
.content-narrow ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.content-narrow li {
    margin-bottom: 12px;
}

/* Inline Images */
.content-image,
.content-image-wrapper {
    margin: 45px 0;
    background-color: #e8e8e8;
}

.content-image img,
.content-image-wrapper img {
    width: 100%;
    border-radius: 4px;
}

/* Citations */
.citation {
    color: #1a5490;
    font-weight: 600;
    text-decoration: none;
}

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

/* Inline CTA */
.inline-cta-block {
    text-align: center;
    margin: 40px 0;
}

.cta-inline {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a5490;
    color: #ffffff;
    font-size: 18px;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #0d3a6b;
    color: #ffffff;
}

/* Testimonial Inline */
.testimonial-inline {
    display: block;
    padding: 30px 40px;
    margin: 45px 0;
    background-color: #f7f7f7;
    border-left: 4px solid #1a5490;
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
}

.testimonial-inline cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-size: 16px;
    color: #666;
    font-family: Arial, sans-serif;
}

/* Products Section */
.products-reveal {
    margin-top: 80px;
    margin-bottom: 80px;
}

.product-cards-story {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

.product-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    padding: 30px;
}

.product-card img {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 4px;
    background-color: #e8e8e8;
}

.product-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.product-card p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.product-price {
    font-size: 32px;
    font-weight: bold;
    color: #1a5490;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.btn-select-product {
    padding: 14px 28px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-select-product:hover {
    background-color: #0d3a6b;
}

/* Form Section */
.form-story-section {
    margin: 80px 0;
    padding: 50px 30px;
    background-color: #f7f7f7;
    border-radius: 6px;
}

.story-form {
    max-width: 540px;
    margin: 40px auto 0;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-row label {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2a2a2a;
    font-family: Arial, sans-serif;
    font-weight: 600;
}

.form-row input,
.form-row textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: Georgia, serif;
    background-color: #ffffff;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #1a5490;
}

.form-row input[readonly] {
    background-color: #f0f0f0;
    color: #666;
}

.btn-submit-order {
    width: 100%;
    padding: 16px 32px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.btn-submit-order:hover {
    background-color: #0d3a6b;
}

/* Final Reassurance */
.final-reassurance {
    margin: 70px 0;
    padding: 40px;
    background-color: #f0f5fa;
    border-radius: 6px;
}

/* Footer */
.main-footer {
    background-color: #2a2a2a;
    color: #cccccc;
    padding: 60px 40px 30px;
    margin-top: 100px;
    font-family: Arial, sans-serif;
}

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

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

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

.footer-section a {
    color: #cccccc;
    font-size: 14px;
}

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

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

.references-list li {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.references-list a {
    color: #9db4cf;
}

.references-list a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: #3a3a3a;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 14px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 25px 30px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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.5;
    font-family: Arial, sans-serif;
    margin: 0;
}

.cookie-content a {
    color: #9db4cf;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #1a5490;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #0d3a6b;
}

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

.btn-reject:hover {
    background-color: #444;
}

/* Page Content (for other pages) */
.page-content {
    min-height: 60vh;
}

.page-hero {
    text-align: center;
    padding: 80px 30px 60px;
    background-color: #f0f5fa;
    margin-bottom: 60px;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 22px;
    color: #555;
}

/* Services Page */
.services-intro {
    margin-bottom: 60px;
}

.product-grid-services {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

.service-product-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.product-image-container {
    width: 100%;
    background-color: #e8e8e8;
}

.product-image-container img {
    width: 100%;
}

.product-details {
    padding: 35px;
}

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

.product-details p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.product-specs {
    list-style: none;
    margin: 25px 0;
    padding: 25px;
    background-color: #f7f7f7;
    border-radius: 4px;
}

.product-specs li {
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-family: Arial, sans-serif;
}

.product-specs li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: bold;
}

.service-price {
    font-size: 34px;
    font-weight: bold;
    color: #1a5490;
    margin: 25px 0;
    font-family: Arial, sans-serif;
}

.btn-service-order {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 4px;
    font-size: 17px;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-service-order:hover {
    background-color: #0d3a6b;
    color: #ffffff;
}

.services-guarantee {
    margin-top: 80px;
}

/* Contact Page */
.contact-content {
    margin-bottom: 80px;
}

.contact-info-section {
    margin-bottom: 70px;
}

.contact-details-block {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px 0;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a5490;
    font-family: Arial, sans-serif;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
}

.email-display {
    color: #2a2a2a;
    font-family: 'Courier New', monospace;
    background-color: #f0f0f0;
    padding: 4px 8px;
    border-radius: 3px;
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background-color: #fff8e1;
    border-left: 4px solid #f9a825;
    border-radius: 4px;
}

.contact-faq {
    background-color: #f7f7f7;
    padding: 60px 30px;
    border-radius: 6px;
}

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

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a5490;
}

.faq-item p {
    font-size: 17px;
    color: #444;
}

/* Thanks Page */
.thanks-hero {
    padding: 80px 30px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #1a5490;
}

.thanks-message {
    font-size: 22px;
    margin-bottom: 50px;
    color: #555;
}

.order-summary {
    background-color: #f0f5fa;
    padding: 35px;
    border-radius: 6px;
    margin-bottom: 50px;
    text-align: left;
}

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

.order-summary p {
    font-size: 18px;
    margin-bottom: 12px;
}

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

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.steps-list {
    padding-left: 25px;
}

.steps-list li {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.btn-back-home,
.btn-view-products {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 17px;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.btn-back-home {
    background-color: #1a5490;
    color: #ffffff;
}

.btn-back-home:hover {
    background-color: #0d3a6b;
    color: #ffffff;
}

.btn-view-products {
    background-color: #f0f0f0;
    color: #2a2a2a;
}

.btn-view-products:hover {
    background-color: #e0e0e0;
}

.support-info {
    margin-top: 50px;
    padding: 25px;
    background-color: #f7f7f7;
    border-radius: 4px;
}

/* Legal Pages */
.legal-page {
    padding-bottom: 80px;
}

.last-updated {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
    text-align: center;
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a5490;
}

.legal-section h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #2a2a2a;
}

.legal-section p {
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin: 20px 0 20px 30px;
}

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

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 15px;
    font-family: Arial, sans-serif;
}

.gdpr-table th,
.cookies-table th {
    background-color: #1a5490;
    color: #ffffff;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.gdpr-table td,
.cookies-table td {
    padding: 12px;
    border: 1px solid #ddd;
}

.gdpr-table tr:nth-child(even),
.cookies-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.value-block {
    margin-bottom: 35px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a5490;
}

.about-intro,
.mission-section,
.values-section,
.team-approach,
.commitment-section {
    margin-bottom: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

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

    .hero-story h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .lead-text,
    .hero-subtitle,
    .thanks-message {
        font-size: 18px;
    }

    .content-narrow h2,
    .order-summary h2,
    .next-steps h2 {
        font-size: 28px;
    }

    .story-flow,
    .content-narrow {
        padding: 0 20px;
    }

    .testimonial-inline {
        padding: 25px;
        font-size: 18px;
    }

    .product-price,
    .service-price {
        font-size: 28px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

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

    .btn-back-home,
    .btn-view-products {
        width: 100%;
        text-align: center;
    }

    .gdpr-table,
    .cookies-table {
        font-size: 13px;
    }

    .gdpr-table th,
    .gdpr-table td,
    .cookies-table th,
    .cookies-table td {
        padding: 8px;
    }
}