
/* CSS Reset & Basic Setup */
        :root {
            --bg-color: #F5F5DC;
            --text-color: #5D4037; /* Darker than 654321 for readability */
            --accent-color-olive: #808000;
            --card-bg-color: #FFFFFF;
            --divider-color: rgba(93, 64, 55, 0.2);
            --header-font: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
            --body-font: 'Georgia', serif;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            font-family: var(--body-font);
            font-size: 17px;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--header-font);
            font-weight: 900;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: var(--text-color);
            margin-bottom: 0.75rem;
        }

        h1 { font-size: clamp(3.0rem, 6vw, 5.5rem); }
        h2 { font-size: clamp(2.0rem, 4vw, 3.0rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2.0rem); }

        p {
            margin-bottom: 1.5rem;
        }

        a {
            color: var(--accent-color-olive);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover, a:focus {
            color: var(--text-color);
            text-decoration: underline;
        }

        .label-caps {
            font-family: var(--body-font);
            font-variant: small-caps;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--accent-color-olive);
        }

        /* Layout & Container */
        .sentinel-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .sentinel-section {
            padding: 6rem 0;
            border-bottom: 2px solid var(--divider-color);
        }

        /* Header & Navigation */
        .apex-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(245, 245, 220, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--divider-color);
        }

        .nav-core {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90px;
        }

        .logo-sigil a {
            font-family: var(--header-font);
            font-size: 1.75rem;
            text-decoration: none;
            color: var(--text-color);
        }

        .nav-nexus {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            list-style: none;
        }

        .nav-nexus a {
            font-family: var(--body-font);
            font-weight: 600;
            font-size: 16px;
            padding: 8px 0;
            position: relative;
            text-decoration: none;
            color: var(--text-color);
        }
        
        .nav-nexus a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color-olive);
            transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .nav-nexus a:hover::after, .nav-nexus a:focus::after {
            width: 100%;
        }

        /* Dropdown Component */
        .dropdown-container {
            position: relative;
        }
        
        .dropdown-trigger {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .dropdown-arrow {
            transition: transform 0.3s ease;
        }
        
        .dropdown-trigger.is-active .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown-content-area {
            position: absolute;
            top: calc(100% + 15px);
            right: 0;
            background-color: var(--card-bg-color);
            border: 2px solid var(--divider-color);
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            padding: 1rem;
            width: 240px;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
            z-index: 110;
        }

        .dropdown-content-area.is-open {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content-area li {
            margin-bottom: 0.5rem;
        }
        
        .dropdown-content-area li a {
            display: block;
            padding: 0.5rem;
            border-radius: 4px;
            transition: background-color 0.2s ease, color 0.2s ease;
        }
        
        .dropdown-content-area li a:hover {
            background-color: var(--bg-color);
            color: var(--text-color);
            text-decoration: none;
        }

        /* Hero Section */
        #hero {
            min-height: calc(100vh - 90px);
            display: flex;
            align-items: center;
            text-align: center;
            border-bottom: 2px solid var(--divider-color);
        }

        .hero-content {
            width: 100%;
        }

        .hero-content h1 {
            margin-bottom: 1.5rem;
        }
        
        .hero-subheadline {
            font-size: 1.25rem;
            max-width: 750px;
            margin: 0 auto 2.5rem auto;
            color: #795548; /* Slightly lighter shade for subheadline */
        }
        
        .cta-cluster {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .cta-button {
            display: inline-block;
            font-family: var(--header-font);
            font-weight: 700;
            font-size: 1rem;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        .cta-primary {
            background-color: var(--accent-color-olive);
            color: var(--card-bg-color);
            border: 2px solid var(--accent-color-olive);
        }
        
        .cta-secondary {
            background-color: transparent;
            color: var(--accent-color-olive);
            border: 2px solid var(--accent-color-olive);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(128, 128, 0, 0.4);
            text-decoration: none;
        }

        /* Benefits Section */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            list-style: none;
        }

        .benefit-item {
            padding: 2rem;
            background-color: var(--card-bg-color);
            border: 2px solid var(--divider-color);
            border-radius: 12px;
            text-align: center;
        }
        
        .benefit-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 1.5rem auto;
            color: var(--accent-color-olive);
        }

        /* Process Section */
        .process-list {
            position: relative;
            list-style: none;
            counter-reset: process-counter;
        }
        
        .process-list::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: var(--divider-color);
        }

        .process-step {
            position: relative;
            padding-left: 70px;
            margin-bottom: 3rem;
        }
        
        .process-step::before {
            counter-increment: process-counter;
            content: counter(process-counter);
            position: absolute;
            left: 0;
            top: -5px;
            width: 50px;
            height: 50px;
            background-color: var(--accent-color-olive);
            color: var(--card-bg-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--header-font);
            font-size: 1.5rem;
            border: 3px solid var(--bg-color);
        }

        /* Article Section */
        #review-article .article-prose {
            max-width: 800px;
            margin: 0 auto;
        }
        
        #review-article .section-intro {
            text-align: center;
            margin-bottom: 4rem;
        }

        .article-prose h2 {
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--divider-color);
        }
        
        .article-prose ul, .article-prose ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        
        .article-prose li {
            margin-bottom: 0.5rem;
        }
        
        .article-prose b, .article-prose strong {
            font-weight: 700;
        }

        .article-prose table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            border: 1px solid var(--divider-color);
        }

        .article-prose th, .article-prose td {
            text-align: left;
            padding: 0.75rem 1rem;
            border: 1px solid var(--divider-color);
        }

        .article-prose th {
            background-color: #f9f9f7; /* Very light beige */
            font-family: var(--header-font);
        }
        
        .article-prose tr:nth-child(even) {
            background-color: var(--card-bg-color);
        }
        
        .article-prose img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 1.5rem 0;
            border: 2px solid var(--divider-color);
        }
        
        /* Testimonials Section */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background-color: var(--card-bg-color);
            padding: 2rem;
            border-radius: 12px;
            border: 2px solid var(--divider-color);
            display: flex;
            flex-direction: column;
        }
        
        .testimonial-quote {
            flex-grow: 1;
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--accent-color-olive);
            color: var(--card-bg-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--header-font);
            font-size: 1.5rem;
            margin-right: 1rem;
        }

        .author-name {
            font-weight: 700;
        }
        
        .author-result {
            font-size: 0.9rem;
            color: #795548;
        }

        /* FAQ Section */
        .faq-item {
            border-bottom: 2px solid var(--divider-color);
            padding: 1.5rem 0;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-question {
            display: flex;
            align-items: start;
            gap: 1rem;
        }
        
        .faq-icon {
            font-family: var(--header-font);
            color: var(--accent-color-olive);
            font-size: 1.5rem;
            line-height: 1.5;
        }
        
        .faq-question h3 {
            margin-bottom: 0.5rem;
            flex-grow: 1;
        }
        
        .faq-answer {
            padding-left: calc(1.5rem + 1rem); /* icon size + gap */
        }
        
        /* Offer Section */
        .offer-content-wrapper {
            background: var(--card-bg-color);
            border: 2px solid var(--divider-color);
            border-radius: 12px;
            padding: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .visual-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, var(--bg-color), #eae8c9);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--header-font);
            font-size: 2rem;
            color: var(--accent-color-olive);
            border: 2px dashed var(--divider-color);
        }
        
        .offer-list {
            list-style: none;
        }
        
        .offer-list-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        
        .offer-list-item svg {
            width: 24px;
            height: 24px;
            color: var(--accent-color-olive);
            flex-shrink: 0;
        }
        
        /* Footer */
        .apex-footer {
            background-color: var(--text-color);
            color: var(--bg-color);
            padding: 5rem 0 2rem 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .footer-column h4 {
            font-family: var(--body-font);
            font-variant: small-caps;
            letter-spacing: 0.1em;
            color: var(--bg-color);
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 0.75rem;
        }
        
        .footer-column a {
            color: var(--bg-color);
            opacity: 0.7;
            text-decoration: none;
        }
        
        .footer-column a:hover {
            opacity: 1;
            text-decoration: underline;
        }
        
        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(245, 245, 220, 0.2);
            padding-top: 2rem;
            font-size: 0.9rem;
            opacity: 0.6;
        }

        /* Animation & Utility Classes */
        .scroll-trigger {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .scroll-trigger.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .text-center {
            text-align: center;
        }
        
        .section-headline {
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 4rem;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .nav-nexus {
                display: none; /* A real mobile menu would be more complex */
            }
            .cta-cluster {
                flex-direction: column;
                align-items: center;
            }
            .cta-button {
                width: 100%;
                max-width: 300px;
            }
            .offer-content-wrapper {
                grid-template-columns: 1fr;
            }
            body { font-size: 16px; }
        }


/* Additional styles specific to the privacy page can be added here if needed. */
        /* Currently, all styles are handled by the existing style.css */

/* All original styles are located in the main 'style.css' file. No additional styles are needed for this page. */




.blog-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.blog-post-card {
    background-color: var(--card-bg-color);
    border: 2px solid var(--divider-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(93, 64, 55, 0.15);
}

.blog-post-card-image-link {
    display: block;
    height: 220px;
    background-color: #eae8c9;
}

.blog-post-card-image-link.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--accent-color-olive);
    opacity: 0.6;
}

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

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-content h3 {
    font-size: 1.3rem; 
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
    font-family: var(--body-font);
    font-weight: 700;
}

.blog-card-content h3 a {
    color: var(--text-color);
    text-decoration: none;
}

.blog-card-content h3 a:hover {
    color: var(--accent-color-olive);
    text-decoration: underline;
}

.blog-card-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
    flex-grow: 1;
}
