
/* --- Base Styles & Variables --- */
        :root {
            --deep-blue: #0a192f;
            --gold: #f7c873;
            --light-gray: #cccccc;
            --white: #ffffff;
            --header-font: 'Helvetica Neue', 'Arial', sans-serif;
            --body-font: 'Helvetica', 'Arial', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--deep-blue);
            color: var(--light-gray);
            font-family: var(--body-font);
            font-weight: 400; /* Medium weight simulation */
            line-height: 1.6;
            font-size: 16px;
            overflow-x: hidden;
        }

        /* --- Typography --- */
        h1, h2, h3, h4, h5, h6 {
            color: var(--white);
            font-family: var(--header-font);
            font-weight: 100; /* Thin weight */
            line-height: 1.2;
            margin-bottom: 1rem;
        }

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

        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(247, 200, 115, 0.3);
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .section-title-wrapper {
            font-family: var(--header-font);
            font-weight: 100;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--white);
            text-align: center;
            margin-bottom: 1rem;
        }
        
        p {
            margin-bottom: 1.5rem;
        }
        
        p:last-of-type {
            margin-bottom: 0;
        }

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

        a:hover {
            color: var(--white);
        }
        
        strong, b {
            font-weight: 700;
            color: var(--white);
        }

        em, i {
            font-style: italic;
            color: var(--gold);
        }

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

        .vtx-section {
            padding: 100px 0;
            overflow: hidden;
        }

        /* --- Animation Styles --- */
        .vtx-anim {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .vtx-anim.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Header --- */
        .vtx-header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            padding: 20px 0;
            background-color: rgba(10, 25, 47, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .vtx-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .vtx-logo {
            font-family: var(--header-font);
            font-weight: 200; /* slightly bolder than thin */
            font-size: 1.8rem;
            color: var(--white);
            letter-spacing: 1px;
        }

        .vtx-logo span {
            color: var(--gold);
        }

        .vtx-nav ul {
            list-style: none;
            display: flex;
            gap: 40px;
        }

        .vtx-nav a {
            font-family: var(--header-font);
            font-weight: 300;
            font-size: 1.1rem;
            color: var(--light-gray);
            position: relative;
            padding-bottom: 5px;
        }
        
        .vtx-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: var(--gold);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s ease-out;
        }

        .vtx-nav a:hover::after, .vtx-nav a.active::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        /* --- Hero Section --- */
        .vtx-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }
        
        .vtx-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(10, 25, 47, 0) 0%, var(--deep-blue) 70%);
            z-index: 1;
        }

        .vtx-hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
        }

        .vtx-hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 2rem auto 2.5rem;
            font-weight: 300;
        }

        .vtx-cta-button {
            display: inline-block;
            background-color: var(--gold);
            color: var(--deep-blue);
            font-family: var(--header-font);
            font-size: 1.1rem;
            font-weight: 600;
            padding: 15px 40px;
            border-radius: 50px;
            border: 2px solid var(--gold);
            transition: background-color 0.3s ease, color 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .vtx-cta-button:hover {
            background-color: transparent;
            color: var(--gold);
        }

        /* --- Article Section --- */
        .article-section {
            background-color: #0d203c;
        }
        
        .article-section p {
            margin-left: 20px;
            margin-right: 20px;
        }
        
        .article-section h2 {
            text-align: left;
            border: none;
            font-size: 2.2rem;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            padding-left: 20px;
            border-left: 3px solid var(--gold);
        }
        
        .article-section h2:first-of-type {
            margin-top: 0;
        }
        
        .article-subtitle {
            text-align: center;
            font-size: 1.2rem;
            font-style: italic;
            margin-top: -1rem;
            margin-bottom: 3rem;
            color: var(--light-gray);
        }

        .article-section ul, .article-section ol {
            margin-left: 40px;
            margin-right: 20px;
            margin-bottom: 1.5rem;
        }

        .article-section li {
            margin-bottom: 0.75rem;
        }

        .article-section table {
            width: calc(100% - 40px);
            margin: 0 20px 2rem 20px;
            border-collapse: collapse;
            text-align: left;
        }
        
        .article-section th, .article-section td {
            padding: 12px 15px;
            border: 1px solid rgba(204, 204, 204, 0.2);
        }

        .article-section th {
            background-color: rgba(13, 32, 60, 0.8);
            color: var(--gold);
            font-family: var(--header-font);
            font-weight: 400;
        }
        
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5rem 0;
            display: block;
            border: 1px solid rgba(255,255,255,0.1);
        }


        /* --- Benefits Block --- */
        .vtx-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .vtx-benefit-card {
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 30px;
            border-radius: 10px;
            transition: transform 0.3s ease, background-color 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .vtx-benefit-card:hover {
            transform: translateY(-10px);
            background-color: rgba(255, 255, 255, 0.05);
        }

        .vtx-benefit-card::before {
            content: attr(data-number);
            position: absolute;
            top: -20px;
            right: 0;
            font-size: 8rem;
            font-family: var(--header-font);
            font-weight: 100;
            color: rgba(247, 200, 115, 0.05);
            line-height: 1;
            z-index: 0;
        }

        .vtx-benefit-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 20px;
            color: var(--gold);
        }
        
        .vtx-benefit-card h3 {
            font-size: 1.5rem;
            font-weight: 300;
            position: relative;
            z-index: 1;
        }
        
        .vtx-benefit-card p {
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
            margin-bottom: 0;
        }

        /* --- "What's Included" Block --- */
        #included {
            background: linear-gradient(to bottom, var(--deep-blue) 0%, #0d203c 50%, var(--deep-blue) 100%);
        }
        .vtx-included-content {
            display: flex;
            align-items: center;
            gap: 5%;
        }
        .vtx-included-list {
            flex-basis: 50%;
            list-style: none;
        }
        .vtx-included-list li {
            font-size: 1.2rem;
            padding: 15px 0 15px 35px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            position: relative;
        }
        .vtx-included-list li::before {
            content: '✓';
            color: var(--gold);
            position: absolute;
            left: 0;
            top: 15px;
            font-weight: bold;
            font-size: 1.4rem;
        }
        .vtx-included-visual {
            flex-basis: 45%;
            aspect-ratio: 1 / 1;
            border: 2px dashed var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            animation: vtx-rotate 30s linear infinite;
        }
        .vtx-included-visual-inner {
            font-family: var(--header-font);
            font-weight: 100;
            font-size: 2rem;
            color: var(--white);
            animation: vtx-rotate-reverse 30s linear infinite;
        }
        @keyframes vtx-rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        @keyframes vtx-rotate-reverse {
            from { transform: rotate(0deg); }
            to { transform: rotate(-360deg); }
        }

        /* --- Social Proof --- */
        .vtx-reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
        }
        .vtx-review-card {
            background-color: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .vtx-review-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .vtx-review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--gold);
            color: var(--deep-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 15px;
        }
        .vtx-review-name {
            font-weight: bold;
            color: var(--white);
            font-size: 1.1rem;
        }
        .vtx-review-body {
            font-style: italic;
            margin-bottom: 15px;
            flex-grow: 1;
        }
        .vtx-review-result {
            font-weight: bold;
            color: var(--gold);
            text-align: right;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 10px;
        }

        /* --- How it Works --- */
        .vtx-process-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            position: relative;
        }
        .vtx-process-card {
            background-color: #0d203c;
            padding: 30px;
            border-radius: 10px;
            position: relative;
            counter-increment: process-counter;
        }
        .vtx-process-card::before {
            content: "0" counter(process-counter);
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 2rem;
            font-family: var(--header-font);
            font-weight: 100;
            color: var(--gold);
        }
        .vtx-process-card h3 {
            font-size: 1.6rem;
            padding-top: 40px; /* space for number */
            font-weight: 300;
        }

        /* --- FAQ Block --- */
        .vtx-faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        }

        .vtx-faq-question {
            padding: 25px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2rem;
            font-weight: 300;
            font-family: var(--header-font);
            color: var(--white);
        }

        .vtx-faq-icon {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
            color: var(--gold);
        }
        
        .vtx-faq-item.active .vtx-faq-icon {
            transform: rotate(45deg);
        }

        .vtx-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
        }
        
        .vtx-faq-answer-content {
            padding: 0 20px 0px;
        }

        .vtx-faq-item.active .vtx-faq-answer {
             max-height: 500px; /* Adjust as needed */
        }
        .vtx-faq-item.active .vtx-faq-answer-content {
            padding: 0 20px 25px;
        }

        /* --- Footer --- */
        .vtx-footer {
            background-color: #061222;
            padding: 80px 0 30px;
            font-size: 0.9rem;
        }
        
        .vtx-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .vtx-footer-column h4 {
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--gold);
            margin-bottom: 20px;
            position: relative;
        }

        .vtx-footer-column h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 40px;
            height: 2px;
            background-color: var(--gold);
        }
        
        .vtx-footer-column ul {
            list-style: none;
        }
        
        .vtx-footer-column li {
            margin-bottom: 12px;
        }
        
        .vtx-footer-column a {
            color: var(--light-gray);
        }
        .vtx-footer-column a:hover {
            color: var(--white);
            padding-left: 5px;
        }
        
        .vtx-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: #8892b0;
        }
        
        /* --- Responsive Styles --- */
        @media (max-width: 900px) {
            .vtx-included-content {
                flex-direction: column;
            }
            .vtx-included-visual {
                margin-top: 40px;
                width: 80%;
            }
        }
        
        @media (max-width: 768px) {
            .vtx-header-content {
                padding: 0 5%;
            }
            .vtx-nav {
                display: none; /* For simplicity; a real project would have a mobile menu */
            }
            .vtx-process-grid {
                grid-template-columns: 1fr;
            }
        }


.vtx-main-article-image {

            width: 100%;

            height: auto;

            border-radius: 8px;

            margin: 1.5rem 0;

            display: block;

            border: 1px solid rgba(255, 255, 255, 0.1);

        }