
/* FONT IMPORT - EMBEDDED TO AVOID CDN */
        @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Roboto:ital,wght@0,300;0,400;0,700;1,400&display=swap');

        :root {
            --bg-deep-bordeaux: #4D0F28;
            --header-gold: #D4AF37;
            --text-pink-gray: #C5B4B9;
            --card-bordeaux: #6B203B;
            --accent-glow: rgba(212, 175, 55, 0.1);
            --font-cursive: 'Dancing Script', cursive;
            --font-grotesque: 'Roboto', sans-serif;
        }

        /* --- GLOBAL & RESET --- */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

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

        body {
            background-color: var(--bg-deep-bordeaux);
            color: var(--text-pink-gray);
            font-family: var(--font-grotesque);
            line-height: 1.7;
            font-weight: 300;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--header-gold);
            font-family: var(--font-grotesque);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 5vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 4vw, 2rem); }
        h4 { font-size: 1.25rem; font-weight: 400; }

        p {
            margin-bottom: 1.5rem;
        }

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

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

        .cursive-accent {
            font-family: var(--font-cursive);
            font-weight: 700;
            color: var(--header-gold);
            display: block;
            font-size: 1.5em;
        }
        
        .cta-italic {
            font-style: italic;
        }

        .page-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-wrapper {
            padding: 6rem 0;
            position: relative;
        }

        /* --- HEADER & NAVIGATION --- */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 2rem;
            z-index: 1000;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-scrolled {
            background-color: rgba(77, 15, 40, 0.8);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }
        
        .site-logo {
            font-family: var(--font-cursive);
            font-size: 2rem;
            color: var(--header-gold);
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1002;
        }

        .nav-toggle-icon {
            width: 30px;
            height: 22px;
            position: relative;
        }
        .nav-toggle-icon span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: var(--header-gold);
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }
        .nav-toggle-icon span:nth-child(1) { top: 0px; }
        .nav-toggle-icon span:nth-child(2), .nav-toggle-icon span:nth-child(3) { top: 9px; }
        .nav-toggle-icon span:nth-child(4) { top: 18px; }

        .nav-open .nav-toggle-icon span:nth-child(1), .nav-open .nav-toggle-icon span:nth-child(4) { top: 9px; width: 0%; left: 50%; }
        .nav-open .nav-toggle-icon span:nth-child(2) { transform: rotate(45deg); }
        .nav-open .nav-toggle-icon span:nth-child(3) { transform: rotate(-45deg); }


        .main-navigation {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .main-navigation ul {
            list-style: none;
            display: flex;
            gap: 1.5rem;
        }
        
        .main-navigation a {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 400;
            position: relative;
            padding-bottom: 5px;
        }

        .main-navigation a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background-color: var(--header-gold);
            transition: width 0.3s ease;
        }
        .main-navigation a:hover::after {
            width: 100%;
        }

        /* --- HERO SECTION --- */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 8rem;
            background: radial-gradient(circle, rgba(77, 15, 40, 0.8) 0%, var(--bg-deep-bordeaux) 70%);
        }

        .hero-content {
            max-width: 900px;
        }
        
        .hero-content h1 {
            margin-bottom: 1.5rem;
        }

        .hero-description {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.6;
        }

        .primary-cta {
            display: inline-block;
            background-color: var(--header-gold);
            color: var(--bg-deep-bordeaux);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid var(--header-gold);
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
        }

        .primary-cta:hover {
            background-color: transparent;
            color: var(--header-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px var(--accent-glow);
        }

        /* --- ARTICLE SECTION --- */
        .article-intro {
            text-align: center;
            font-family: var(--font-cursive);
            font-size: 2.5rem;
            color: var(--text-pink-gray);
            margin-bottom: 4rem;
        }
        .article-content-wrapper {
            background-color: rgba(0,0,0,0.1);
            padding: 3rem;
            border-radius: 10px;
        }
        .article-content-wrapper h2 {
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--card-bordeaux);
            margin-bottom: 2rem;
            margin-top: 2.5rem;
        }
        .article-content-wrapper h2:first-of-type {
            margin-top: 0;
        }
        .article-content-wrapper p {
            padding: 0 1rem;
        }
        .article-content-wrapper ul, .article-content-wrapper ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
            padding-left: 1rem;
        }
        .article-content-wrapper li {
            margin-bottom: 0.5rem;
        }
        .article-content-wrapper table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background-color: var(--card-bordeaux);
        }
        .article-content-wrapper th, .article-content-wrapper td {
            border: 1px solid var(--bg-deep-bordeaux);
            padding: 1rem;
            text-align: left;
        }
        .article-content-wrapper th {
            background-color: var(--header-gold);
            color: var(--bg-deep-bordeaux);
            font-weight: 700;
        }
        .article-content-wrapper strong, .article-content-wrapper b {
            color: var(--header-gold);
            font-weight: 400;
        }

        img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
        }

        /* --- PRODUCT COMPOSITION SECTION --- */
        .composition-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            align-items: center;
        }
        
        .composition-text-block {
            padding-right: 2rem;
        }
        
        .composition-visual {
            background: var(--card-bordeaux);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            text-align: center;
            font-family: monospace;
            color: var(--text-pink-gray);
        }
        
        .composition-visual pre {
            text-align: left;
            white-space: pre-wrap;
            font-size: 0.9em;
            background: rgba(0,0,0,0.2);
            padding: 1rem;
            border-radius: 5px;
        }
        .composition-visual h4 {
            margin-bottom: 1.5rem;
        }

        /* --- BENEFITS SECTION --- */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .benefit-card {
            border: 1px solid var(--card-bordeaux);
            padding: 2.5rem 2rem;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: var(--header-gold);
        }
        
        .benefit-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 1.5rem;
            color: var(--header-gold);
        }

        .benefit-card h3 {
            font-size: 1.5rem;
        }
        
        /* --- TESTIMONIALS SECTION --- */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }
        
        .testimonial-card {
            background-color: var(--card-bordeaux);
            padding: 2rem;
            border-radius: 8px;
            border-left: 4px solid var(--header-gold);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .testimonial-quote {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--header-gold);
        }
        
        .testimonial-author span {
            display: block;
            font-weight: 300;
            color: var(--text-pink-gray);
            font-size: 0.9rem;
        }
        
        .transformation-block {
            border: 1px solid var(--card-bordeaux);
            padding: 2rem;
            text-align: center;
        }
        .transformation-block:hover {
             box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
             border-color: var(--header-gold);
        }
        .transformation-block .cursive-accent {
            font-size: 2.5rem;
        }

        /* --- STEPS SECTION --- */
        .steps-container {
            display: flex;
            justify-content: space-between;
            position: relative;
            gap: 2rem;
        }
        
        .steps-container::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: repeating-linear-gradient(90deg, var(--card-bordeaux), var(--card-bordeaux) 10px, transparent 10px, transparent 20px);
            z-index: -1;
        }

        .step-item {
            flex: 1;
            text-align: center;
            max-width: 300px;
            position: relative;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: var(--card-bordeaux);
            border: 2px solid var(--header-gold);
            color: var(--header-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .step-item:hover .step-number {
            transform: scale(1.1);
            background-color: var(--header-gold);
            color: var(--bg-deep-bordeaux);
        }

        .step-item h3 {
            font-size: 1.4rem;
        }

        /* --- FAQ SECTION --- */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            border-bottom: 1px solid var(--card-bordeaux);
        }
        
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding: 1.5rem 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--header-gold);
            font-size: 1.2rem;
            font-weight: 700;
            font-family: var(--font-grotesque);
        }
        
        .faq-icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            color: var(--header-gold);
            transition: transform 0.3s ease;
            margin-left: 1rem;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
        }
        .faq-answer-content {
            padding: 0 0 1.5rem 0;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px; /* Adjust as needed */
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        /* --- FOOTER --- */
        .site-footer {
            background-color: #3d0c20;
            padding: 4rem 0 2rem 0;
            color: var(--text-pink-gray);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-column h4 {
            color: var(--header-gold);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 0.75rem;
        }
        
        .footer-column a {
            color: var(--text-pink-gray);
        }
        .footer-column a:hover {
            color: var(--header-gold);
        }
        
        .footer-bottom {
            text-align: center;
            border-top: 1px solid var(--card-bordeaux);
            padding-top: 2rem;
            font-size: 0.9rem;
        }

        /* --- ANIMATIONS --- */
        .anim-fade-in {
            opacity: 0;
            transition: opacity 1s ease-out;
        }

        .anim-slide-up {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .anim-slide-up.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .anim-fade-in.is-visible {
            opacity: 1;
        }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 992px) {
            .steps-container {
                flex-direction: column;
                align-items: center;
            }
            .steps-container::before {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .page-container {
                padding: 0 1rem;
            }
            .site-header {
                padding: 1rem;
            }
            .nav-toggle {
                display: block;
            }
            .main-navigation {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--bg-deep-bordeaux);
                box-shadow: -10px 0 30px rgba(0,0,0,0.2);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            }
            .nav-open .main-navigation {
                right: 0;
            }
            .main-navigation ul {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }
             .main-navigation a {
                font-size: 1.2rem;
            }
            .article-content-wrapper {
                padding: 1.5rem;
            }
        }


/* FONT IMPORT - EMBEDDED TO AVOID CDN */
        @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Roboto:ital,wght@0,300;0,400;0,700;1,400&display=swap');
         
        :root {
            --bg-deep-bordeaux: #4D0F28;
            --header-gold: #D4AF37;
            --text-pink-gray: #C5B4B9;
            --card-bordeaux: #6B203B;
            --accent-glow: rgba(212, 175, 55, 0.1);
            --font-cursive: 'Dancing Script', cursive;
            --font-grotesque: 'Roboto', sans-serif;
        }
         
        /* --- GLOBAL & RESET --- */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
         
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
         
        body {
            background-color: var(--bg-deep-bordeaux);
            color: var(--text-pink-gray);
            font-family: var(--font-grotesque);
            line-height: 1.7;
            font-weight: 300;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
         
        h1, h2, h3, h4, h5, h6 {
            color: var(--header-gold);
            font-family: var(--font-grotesque);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
         
        h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 5vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 4vw, 2rem); }
        h4 { font-size: 1.25rem; font-weight: 400; }
         
        p {
            margin-bottom: 1.5rem;
        }
         
        a {
            color: var(--header-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }
         
        a:hover {
            color: var(--text-pink-gray);
        }
        .cursive-accent {
            font-family: var(--font-cursive);
            font-weight: 700;
            color: var(--header-gold);
            display: block;
            font-size: 1.5em;
        }
                .cta-italic {
            font-style: italic;
        }
        .page-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .section-wrapper {
            padding: 6rem 0;
            position: relative;
        }
         
        /* --- HEADER & NAVIGATION --- */
       .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 2rem;
            z-index: 1000;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .header-scrolled {
            background-color: rgba(77, 15, 40, 0.8);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }
                .site-logo {
            font-family: var(--font-cursive);
            font-size: 2rem;
            color: var(--header-gold);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1002;
        }
        .nav-toggle-icon {
            width: 30px;
            height: 22px;
            position: relative;
        }
       .nav-toggle-icon span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: var(--header-gold);
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition:.25s ease-in-out;
        }
       .nav-toggle-icon span:nth-child(1) { top: 0px; }
       .nav-toggle-icon span:nth-child(2),.nav-toggle-icon span:nth-child(3) { top: 9px; }
       .nav-toggle-icon span:nth-child(4) { top: 18px; }
        .nav-open .nav-toggle-icon span:nth-child(1),.nav-open .nav-toggle-icon span:nth-child(4) { top: 9px; width: 0%; left: 50%; }
       .nav-open .nav-toggle-icon span:nth-child(2) { transform: rotate(45deg); }
       .nav-open .nav-toggle-icon span:nth-child(3) { transform: rotate(-45deg); }
         
        .main-navigation {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }
        .main-navigation ul {
            list-style: none;
            display: flex;
            gap: 1.5rem;
        }
                .main-navigation a {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 400;
            position: relative;
            padding-bottom: 5px;
        }
        .main-navigation a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background-color: var(--header-gold);
            transition: width 0.3s ease;
        }
       .main-navigation a:hover::after {
            width: 100%;
        }
         
        /* --- HERO SECTION --- */
       .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 8rem;
            background: radial-gradient(circle, rgba(77, 15, 40, 0.8) 0%, var(--bg-deep-bordeaux) 70%);
        }
        .hero-content {
            max-width: 900px;
        }
                .hero-content h1 {
            margin-bottom: 1.5rem;
        }
        .hero-description {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.6;
        }
        .primary-cta {
            display: inline-block;
            background-color: var(--header-gold);
            color: var(--bg-deep-bordeaux);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid var(--header-gold);
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
        }
        .primary-cta:hover {
            background-color: transparent;
            color: var(--header-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px var(--accent-glow);
        }
         
        /* --- ARTICLE SECTION --- */
        .page-title-section {
            padding-top: 12rem;
            padding-bottom: 4rem;
            text-align: center;
            background: radial-gradient(circle, rgba(77, 15, 40, 0.5) 0%, var(--bg-deep-bordeaux) 60%);
        }
       .article-intro {
            text-align: center;
            font-family: var(--font-cursive);
            font-size: 2.5rem;
            color: var(--text-pink-gray);
            margin-bottom: 4rem;
        }
       .article-content-wrapper {
            background-color: rgba(0,0,0,0.1);
            padding: 3rem;
            border-radius: 10px;
            max-width: 900px;
            margin: 0 auto;
        }
       .article-content-wrapper h2 {
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--card-bordeaux);
            margin-bottom: 2rem;
            margin-top: 2.5rem;
        }
       .article-content-wrapper h2:first-of-type {
            margin-top: 0;
        }
       .article-content-wrapper p {
            padding: 0 1rem;
        }
       .article-content-wrapper ul,.article-content-wrapper ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
            padding-left: 1rem;
        }
       .article-content-wrapper li {
            margin-bottom: 0.5rem;
        }
       .article-content-wrapper table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background-color: var(--card-bordeaux);
        }
       .article-content-wrapper th,.article-content-wrapper td {
            border: 1px solid var(--bg-deep-bordeaux);
            padding: 1rem;
            text-align: left;
        }
       .article-content-wrapper th {
            background-color: var(--header-gold);
            color: var(--bg-deep-bordeaux);
            font-weight: 700;
        }
       .article-content-wrapper strong,.article-content-wrapper b {
            color: var(--header-gold);
            font-weight: 400;
        }
         
        img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2rem 0;
        }
         
        /* --- PRODUCT COMPOSITION SECTION --- */
       .composition-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            align-items: center;
        }
                .composition-text-block {
            padding-right: 2rem;
        }
                .composition-visual {
            background: var(--card-bordeaux);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.2);
            text-align: center;
            font-family: monospace;
            color: var(--text-pink-gray);
        }
                .composition-visual pre {
            text-align: left;
            white-space: pre-wrap;
            font-size: 0.9em;
            background: rgba(0,0,0,0.2);
            padding: 1rem;
            border-radius: 5px;
        }
       .composition-visual h4 {
            margin-bottom: 1.5rem;
        }
         
        /* --- BENEFITS SECTION --- */
       .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        .benefit-card {
            border: 1px solid var(--card-bordeaux);
            padding: 2.5rem 2rem;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: var(--header-gold);
        }
                .benefit-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 1.5rem;
            color: var(--header-gold);
        }
        .benefit-card h3 {
            font-size: 1.5rem;
        }
                 
        /* --- TESTIMONIALS SECTION --- */
       .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }
                .testimonial-card {
            background-color: var(--card-bordeaux);
            padding: 2rem;
            border-radius: 8px;
            border-left: 4px solid var(--header-gold);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
                .testimonial-quote {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
                .testimonial-author {
            font-weight: 700;
            color: var(--header-gold);
        }
                .testimonial-author span {
            display: block;
            font-weight: 300;
            color: var(--text-pink-gray);
            font-size: 0.9rem;
        }
                .transformation-block {
            border: 1px solid var(--card-bordeaux);
            padding: 2rem;
            text-align: center;
        }
       .transformation-block:hover {
             box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
             border-color: var(--header-gold);
        }
       .transformation-block.cursive-accent {
            font-size: 2.5rem;
        }
         
        /* --- STEPS SECTION --- */
       .steps-container {
            display: flex;
            justify-content: space-between;
            position: relative;
            gap: 2rem;
        }
                .steps-container::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: repeating-linear-gradient(90deg, var(--card-bordeaux), var(--card-bordeaux) 10px, transparent 10px, transparent 20px);
            z-index: -1;
        }
        .step-item {
            flex: 1;
            text-align: center;
            max-width: 300px;
            position: relative;
        }
                .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: var(--card-bordeaux);
            border: 2px solid var(--header-gold);
            color: var(--header-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
       .step-item:hover .step-number {
            transform: scale(1.1);
            background-color: var(--header-gold);
            color: var(--bg-deep-bordeaux);
        }
        .step-item h3 {
            font-size: 1.4rem;
        }
         
        /* --- FAQ SECTION --- */
       .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
                .faq-item {
            border-bottom: 1px solid var(--card-bordeaux);
        }
                .faq-question {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding: 1.5rem 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--header-gold);
            font-size: 1.2rem;
            font-weight: 700;
            font-family: var(--font-grotesque);
        }
                .faq-icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            color: var(--header-gold);
            transition: transform 0.3s ease;
            margin-left: 1rem;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
        }
       .faq-answer-content {
            padding: 0 0 1.5rem 0;
        }
                .faq-item.active .faq-answer {
            max-height: 500px; /* Adjust as needed */
        }
                .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
                 
        /* --- FOOTER --- */
       .site-footer {
            background-color: #3d0c20;
            padding: 4rem 0 2rem 0;
            color: var(--text-pink-gray);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
                .footer-column h4 {
            color: var(--header-gold);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
        }
                .footer-column ul {
            list-style: none;
        }
                .footer-column li {
            margin-bottom: 0.75rem;
        }
                .footer-column a {
            color: var(--text-pink-gray);
        }
       .footer-column a:hover {
            color: var(--header-gold);
        }
                .footer-bottom {
            text-align: center;
            border-top: 1px solid var(--card-bordeaux);
            padding-top: 2rem;
            font-size: 0.9rem;
        }
         
        /* --- ANIMATIONS --- */
       .anim-fade-in {
            opacity: 0;
            transition: opacity 1s ease-out;
        }
        .anim-slide-up {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .anim-slide-up.is-visible {
            opacity: 1;
            transform: translateY(0);
        }
                .anim-fade-in.is-visible {
            opacity: 1;
        }
         
        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 992px) {
           .steps-container {
                flex-direction: column;
                align-items: center;
            }
           .steps-container::before {
                display: none;
            }
        }
                 
        @media (max-width: 768px) {
           .page-container {
                padding: 0 1rem;
            }
           .site-header {
                padding: 1rem;
            }
           .nav-toggle {
                display: block;
            }
           .main-navigation {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--bg-deep-bordeaux);
                box-shadow: -10px 0 30px rgba(0,0,0,0.2);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            }
           .nav-open .main-navigation {
                right: 0;
            }
           .main-navigation ul {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }
            .main-navigation a {
                font-size: 1.2rem;
            }
           .article-content-wrapper {
                padding: 1.5rem;
            }
            .page-title-section {
                padding-top: 10rem;
            }
        }

.faq-hero-section {
            padding: 10rem 0 6rem 0;
            text-align: center;
            background: radial-gradient(circle, rgba(77, 15, 40, 0.8) 0%, var(--bg-deep-bordeaux) 70%);
        }
        .faq-hero-section p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .faq-content-section {
            padding: 6rem 0;
        }
        .faq-category-title {
            text-align: center;
            margin-top: 4rem;
            margin-bottom: 3rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--card-bordeaux);
        }
        .faq-category-title:first-of-type {
            margin-top: 0;
        }




.page-title-section {
    padding-top: 12rem;
    padding-bottom: 6rem;
    text-align: center;
    background: radial-gradient(circle, rgba(77, 15, 40, 0.5) 0%, var(--bg-deep-bordeaux) 60%);
}

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

.blog-card {
    background-color: var(--card-bordeaux);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--card-bordeaux);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.blog-card-image-link {
    display: block;
}

.blog-card-image {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #3d0c20;
    overflow: hidden;
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allows the cta to be pushed to the bottom */
}

.blog-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.blog-card-content h3 a {
    color: var(--header-gold);
}
.blog-card-content h3 a:hover {
    color: var(--text-pink-gray);
}

.blog-card-content p {
    font-size: 0.95rem;
    flex-grow: 1;
}

.blog-card-cta {
    margin-top: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .page-title-section {
        padding-top: 10rem;
        padding-bottom: 4rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
