
/* --- Reset & Global Styles --- */
        :root {
            --bg-color: #121212;
            --primary-red: #E50914;
            --text-white: # FFFFFF;
            --neutral-gray: #8c8c8c;
            --card-bg: #1f1f1f;
            --shadow-color: rgba(0, 0, 0, 0.4);

            --font-headings: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-white);
            font-family: var(--font-body);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* --- Typography --- */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-headings);
            color: var(--primary-red);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
        }

        h2 {
            font-size: clamp(1.8rem, 4vw + 0.5rem, 3rem);
            margin-top: 2.5rem;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw + 0.5rem, 2.2rem);
        }

        p {
            margin-bottom: 1.5rem;
            max-width: none; /* Requirement: no max-width on paragraphs */
        }
        
        a {
            color: var(--primary-red);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--text-white);
        }

        ul, ol {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }

        /* --- Layout & Utility --- */
        .page-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        section {
            padding: clamp(4rem, 10vh, 6rem) 0;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--primary-red);
            color: var(--text-white);
            font-family: var(--font-headings);
            font-weight: 600;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s ease, background-color 0.3s ease;
            box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            background-color: #ff1a28;
             box-shadow: 0 8px 25px rgba(229, 9, 20, 0.6);
        }

        /* --- Animations --- */
        .reveal-element {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal-element.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Header --- */
        .site-header {
            position: absolute;
            width: 100%;
            z-index: 100;
            padding: 1.5rem 0;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-title {
            font-family: var(--font-headings);
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            color: var(--text-white);
        }
        
        .main-navigation ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            margin: 0;
        }
        
        .main-navigation a {
            font-family: var(--font-body);
            font-weight: 500;
            color: var(--text-white);
            position: relative;
            padding-bottom: 0.5rem;
        }

        .main-navigation a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary-red);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        }
        
        .main-navigation a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }


        /* --- Hero Section --- */
        .hero-banner {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), radial-gradient(circle, var(--card-bg) 0%, var(--bg-color) 70%);
            padding-top: 8rem; /* Offset for header */
        }
        
        .hero-content {
            max-width: 800px;
            text-align: center;
            margin: 0 auto;
        }
        
        .hero-content p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            max-width: 650px;
            margin: 1.5rem auto 2.5rem;
            color: var(--neutral-gray);
        }
        
        .hero-trigger {
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: var(--neutral-gray);
            font-style: italic;
        }

        /* --- Article Section --- */
        .article-intro-title {
            text-align: center;
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            color: var(--neutral-gray);
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .article-content-wrapper {
            background-color: var(--card-bg);
            padding: clamp(2rem, 5vw, 4rem);
            border-radius: 12px;
            box-shadow: 0 10px 40px var(--shadow-color);
        }
        
        .article-content-wrapper h2 {
            border-left: 4px solid var(--primary-red);
            padding-left: 1rem;
            margin-top: 3rem;
        }

        .article-content-wrapper h2:first-of-type {
            margin-top: 0;
        }
        
        .article-content-wrapper p, 
        .article-content-wrapper ul, 
        .article-content-wrapper ol,
        .article-content-wrapper table {
            padding: 0 1.2rem;
        }
        
        .article-content-wrapper table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 1.5rem;
        }
        
        .article-content-wrapper th, 
        .article-content-wrapper td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--neutral-gray);
        }
        
        .article-content-wrapper th {
            color: var(--primary-red);
            font-family: var(--font-headings);
        }
        
        img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
            display: block;
        }

        /* --- Process Section --- */
        .process-title h2 { text-align: center; }
        .timeline-container {
            position: relative;
            max-width: 900px;
            margin: 3rem auto 0;
            padding: 2rem 0;
        }

        .timeline-container::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: var(--card-bg);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
            z-index: 1;
        }

        .timeline-item {
            padding: 1rem 3rem;
            position: relative;
            background-color: inherit;
            width: 50%;
            z-index: 2;
        }

        .timeline-item.left { left: 0; text-align: right; }
        .timeline-item.right { left: 50%; }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: var(--text-white);
            border: 4px solid var(--primary-red);
            top: 25px;
            border-radius: 50%;
            z-index: 3;
        }

        .timeline-item.right::after { left: -10px; }
        .timeline-item-content {
            padding: 1.5rem 2rem;
            background: var(--card-bg);
            position: relative;
            border-radius: 8px;
            box-shadow: 0 5px 20px var(--shadow-color);
        }

        /* --- Components/Features Section --- */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .feature-card {
            background-color: var(--card-bg);
            padding: 2.5rem 2rem;
            text-align: center;
            border-radius: 12px;
            box-shadow: 0 10px 30px var(--shadow-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.6);
        }
        
        .feature-card h3 {
            color: var(--text-white);
        }
        .feature-icon { margin-bottom: 1.5rem; }
        .feature-icon svg {
            width: 50px;
            height: 50px;
            stroke: var(--primary-red);
        }

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

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 1.5rem;
        }
        
        .benefit-icon svg {
            width: 40px;
            height: 40px;
            fill: var(--primary-red);
            flex-shrink: 0;
            margin-top: 5px;
        }
        .benefit-item h3 { color: var(--text-white); }
        .benefit-item p { margin-bottom: 0; color: var(--neutral-gray); }

        /* --- Final CTA Section --- */
        .closing-cta {
            background: var(--card-bg);
            padding: 4rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 50px var(--shadow-color);
        }

        .contact-form {
            margin-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .form-input {
            padding: 1rem;
            background: #333;
            border: 1px solid #444;
            color: var(--text-white);
            border-radius: 5px;
            font-family: var(--font-body);
            flex-grow: 1;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-red);
        }
        
        .trust-elements { margin-top: 1.5rem; font-size: 0.9rem; color: var(--neutral-gray); }

        /* --- FAQ Section --- */
        .faq-container { max-width: 800px; margin: 3rem auto 0; }
        .faq-item {
            background-color: var(--card-bg);
            margin-bottom: 1rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px var(--shadow-color);
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 1.5rem;
            font-family: var(--font-headings);
            font-size: 1.25rem;
            color: var(--text-white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
        }
        
        .faq-icon {
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }
        
        .faq-question.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
        }
        
        .faq-answer p {
            padding: 0 1.5rem 1.5rem;
            margin-bottom: 0;
            color: var(--neutral-gray);
        }

        /* --- Testimonials Section --- */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background-color: var(--card-bg);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 8px 25px var(--shadow-color);
            display: flex;
            flex-direction: column;
        }

        .testimonial-text {
            color: var(--neutral-gray);
            font-style: italic;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }
        .testimonial-text::before {
             content: '“';
             font-size: 3rem;
             color: var(--primary-red);
             font-weight: bold;
             display: block;
             line-height: 0.5;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: auto;
            border-top: 1px solid #333;
            padding-top: 1rem;
        }
        
        .author-name {
            font-weight: bold;
            color: var(--text-white);
        }
        .author-title {
            font-size: 0.9em;
            color: var(--neutral-gray);
        }
        
        .star-rating svg {
            width: 18px;
            height: 18px;
            fill: #ffc107;
        }

        /* --- Footer --- */
        .site-footer {
            background: #000;
            padding: 4rem 0 2rem;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        
        .footer-logo { font-size: 2rem; }
        
        .footer-nav {
            margin-bottom: 1rem;
        }
        
        .footer-nav p {
            font-family: var(--font-headings);
            color: var(--neutral-gray);
            margin-bottom: 1rem;
        }

        .footer-nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }
        
        .copyright {
            margin-top: 3rem;
            color: var(--neutral-gray);
            font-size: 0.9rem;
            border-top: 1px solid var(--card-bg);
            padding-top: 2rem;
            width: 100%;
        }

        /* --- Responsiveness --- */
        @media (max-width: 768px) {
            .main-navigation {
                display: none; /* Simplification for this example. A real site would need a mobile menu button. */
            }
            .timeline-container::after {
                left: 15px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 50px;
                padding-right: 15px;
            }
            .timeline-item.left, .timeline-item.right {
                left: 0%;
                text-align: left;
            }
            .timeline-item.right::after, .timeline-item.left::after {
                left: 5px;
            }
            .closing-cta {padding: 2rem;}
            .contact-form { flex-direction: column; }
        }


.sitemap-container h2 {
            border-left: 4px solid var(--primary-red);
            padding-left: 1rem;
            margin-top: 3rem;
            margin-bottom: 2rem;
        }
        .sitemap-container ul {
            list-style: none;
            padding-left: 1.5rem;
        }
        .sitemap-container li {
            margin-bottom: 1.25rem;
            font-size: 1.1rem;
            color: var(--neutral-gray);
        }
        .sitemap-container li a {
            font-weight: 600;
            font-family: var(--font-headings);
            font-size: 1.2rem;
        }
        .sitemap-container li a:hover {
            text-decoration: underline;
        }

.article-content-wrapper {

            background-color: var(--card-bg);

            padding: clamp(2rem, 5vw, 4rem);

            border-radius: 12px;

            box-shadow: 0 10px 40px var(--shadow-color);

        }


        .article-content-wrapper h2 {

            border-left: 4px solid var(--primary-red);

            padding-left: 1rem;

            margin-top: 3rem;

        }


        .article-content-wrapper h2:first-of-type {

            margin-top: 0;

        }


        .article-content-wrapper p,

        .article-content-wrapper ul,

        .article-content-wrapper ol,

        .article-content-wrapper table {

            padding: 0 1.2rem;

        }


        .article-content-wrapper p {

            color: #dcdcdc;

        }


        .article-content-wrapper ul,

        .article-content-wrapper ol {

            color: var(--neutral-gray);

        }


        .article-content-wrapper strong {

            color: var(--text-white);

            font-weight: 600;

        }


        .article-content-wrapper table {

            width: 100%;

            border-collapse: collapse;

            margin: 2rem 0;

        }


        .article-content-wrapper th,

        .article-content-wrapper td {

            padding: 1rem;

            text-align: left;

            border-bottom: 1px solid #333;

            color: var(--neutral-gray);

        }


        .article-content-wrapper th {

            color: var(--primary-red);

            font-family: var(--font-headings);

        }


        .article-content-wrapper li {

           margin-bottom: 1rem;

        }

        

        #main-image {

            padding-top: 0;

        }