
/* --- CSS Variables and Base Styles --- */
        :root {
            --bg-dark-purple: #1A0C2B;
            --card-purple: #2E1A47;
            --accent-mint: #A1FFD8;
            --text-light-gray: #D1C7E0;
            --font-heading: 'Rockwell', 'Georgia', 'Times New Roman', serif;
            --font-body: 'Arial', 'Helvetica Neue', 'Helvetica', sans-serif;
            --transition-fast: 0.3s ease-in-out;
            --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

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

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

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

        /* --- Animations --- */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity var(--transition-slow), transform var(--transition-slow);
        }

        .animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- General Typography & Layout --- */
        .container-fluid {
            width: 100%;
            padding: 0 5%;
        }

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

        section {
            padding: 100px 0;
            position: relative;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            color: var(--accent-mint);
            font-weight: 700;
            line-height: 1.2;
            text-transform: uppercase;
        }
        
        h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 4vw, 3rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
        p { margin-bottom: 1rem; }
        a { color: var(--accent-mint); text-decoration: none; transition: var(--transition-fast); }
        a:hover { color: white; }

        /* --- Header & Navigation --- */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            background: rgba(26, 12, 43, 0.8);
            backdrop-filter: blur(10px);
            transition: var(--transition-fast);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-text {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: white;
            font-weight: bold;
        }
        .nav-toggle {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 24px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1002;
        }
        .nav-toggle span {
            width: 30px;
            height: 3px;
            background: var(--accent-mint);
            border-radius: 10px;
            transition: all 0.3s linear;
            position: relative;
            transform-origin: 1px;
        }
        .main-navigation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--bg-dark-purple);
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 1001;
        }
        .main-navigation.is-open {
            transform: translateX(0);
        }
        .nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg); }
        .nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: translateX(20px); }
        .nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg); }
        .nav-list {
            list-style: none;
            text-align: center;
        }
        .nav-item {
            margin: 2rem 0;
        }
        .nav-link {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            text-transform: uppercase;
            color: var(--text-light-gray);
        }
        .nav-link:hover {
            color: var(--accent-mint);
        }

        /* --- Hero Section --- */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding-top: 120px;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            max-width: 900px;
            margin: 0 auto 20px;
            color: white;
        }
        .hero-description {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }
        .primary-cta {
            display: inline-block;
            background: var(--accent-mint);
            color: var(--bg-dark-purple);
            padding: 18px 40px;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            border-radius: 4px;
            transition: var(--transition-fast);
            border: 2px solid var(--accent-mint);
        }
        .primary-cta:hover {
            background: transparent;
            color: var(--accent-mint);
        }
        .hero-visual {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 150%;
            height: 150%;
            transform: translate(-50%, -50%);
            z-index: 1;
            opacity: 0.1;
            background: radial-gradient(circle, var(--card-purple) 0%, rgba(26, 12, 43, 0) 70%);
        }

        /* --- Benefits Section --- */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .benefit-card {
            background: var(--card-purple);
            padding: 40px;
            border-radius: 8px;
            border-left: 4px solid var(--accent-mint);
            transition: transform var(--transition-fast), box-shadow var(--transition-fast);
        }
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        .benefit-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 20px;
        }
        .benefit-icon path {
            stroke: var(--accent-mint);
        }
        .benefit-card h3 {
            margin-bottom: 15px;
            color: white;
        }

        /* --- "What's Included" Section --- */
        #included {
            background-color: var(--card-purple);
        }
        .included-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        .included-item {
            background: rgba(26, 12, 43, 0.5);
            padding: 30px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: background-color var(--transition-fast);
        }
        .included-item:hover {
             background: rgba(26, 12, 43, 1);
        }
        .included-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            color: var(--accent-mint);
        }

        /* --- Article Section --- */
        .article-wrapper {
            background: var(--card-purple);
            padding: 60px;
            border-radius: 8px;
        }
        .article-header {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--text-light-gray);
            text-align: center;
            margin-bottom: 40px;
            text-transform: none;
            font-weight: 400;
        }

        <!--Article-->
        .article-content h2 {
            margin-top: 2.5em;
            margin-bottom: 1em;
            padding-bottom: 0.5em;
            border-bottom: 2px solid rgba(161, 255, 216, 0.2);
        }
        .article-content p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .article-content ul, .article-content ol {
            margin-left: 20px;
            margin-bottom: 1.5em;
        }
        .article-content li {
            margin-bottom: 0.75em;
        }
        .article-content b, .article-content strong {
            color: white;
            font-weight: 700;
        }
        .article-content img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 2em 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 2em 0;
            font-size: 1rem;
        }
        .article-content th, .article-content td {
            padding: 15px;
            border: 1px solid rgba(161, 255, 216, 0.1);
            text-align: left;
        }
        .article-content th {
            background-color: var(--bg-dark-purple);
            font-family: var(--font-heading);
            color: var(--accent-mint);
            font-weight: 400;
        }
        <!--/Article-->

        /* --- Testimonials Section --- */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        .testimonial-card {
            background: var(--card-purple);
            padding: 30px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
        }
        .testimonial-quote {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: auto;
        }
        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--bg-dark-purple);
            color: var(--accent-mint);
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: var(--font-heading);
            font-size: 1.5rem;
            border-radius: 50%;
        }
        .author-name {
            font-weight: bold;
            color: white;
        }
        .author-title {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* --- Steps Section --- */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .step-card {
            background: var(--card-purple);
            padding: 40px;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            border-top: 4px solid var(--accent-mint);
            transition: var(--transition-fast);
        }
        .step-card:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(0,0,0,0.25);
        }
        .step-number {
            position: absolute;
            top: -20px;
            right: 15px;
            font-size: 6rem;
            font-family: var(--font-heading);
            font-weight: 900;
            color: rgba(161, 255, 216, 0.05);
            line-height: 1;
            z-index: 1;
        }
        .step-content {
            position: relative;
            z-index: 2;
        }
        .step-card h3 {
            margin-bottom: 15px;
            color: white;
            font-size: 1.5rem;
        }

        /* --- FAQ Section --- */
        .faq-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid var(--card-purple);
        }
        .faq-question {
            width: 100%;
            background: transparent;
            border: none;
            color: var(--text-light-gray);
            text-align: left;
            padding: 25px 0;
            font-family: var(--font-heading);
            font-size: 1.3rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color var(--transition-fast);
        }
        .faq-question:hover, .faq-item.is-open .faq-question {
            color: var(--accent-mint);
        }
        .faq-icon {
            width: 20px;
            height: 20px;
            transition: transform var(--transition-fast);
            flex-shrink: 0;
            margin-left: 20px;
        }
        .faq-item.is-open .faq-icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
            padding: 0 10px;
        }
        .faq-answer p {
            margin: 0;
            padding-bottom: 25px;
        }

        /* --- Footer --- */
        .site-footer {
            background: var(--card-purple);
            padding: 80px 0;
            font-size: 0.9rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
        }
        .footer-about .logo-text {
            font-size: 2rem;
            margin-bottom: 15px;
            display: block;
        }
        .footer-about p {
            max-width: 400px;
            opacity: 0.8;
        }
        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: white;
        }
        .footer-list {
            list-style: none;
        }
        .footer-list li {
            margin-bottom: 10px;
        }
        .footer-list a {
            color: var(--text-light-gray);
        }
        .footer-list a:hover {
            color: var(--accent-mint);
            padding-left: 5px;
        }
        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid var(--bg-dark-purple);
            text-align: center;
            opacity: 0.6;
        }
        
        /* --- Responsive Adjustments --- */
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-about p {
                margin: 0 auto;
            }
        }


/* Article specific styles */

        #article-image-section {

            padding-top: 100px;

            padding-bottom: 0;

        }

        #guide {

            padding-top: 40px;

        }

        .article-img {

            width: 100%;

            height: auto;

            border-radius: 8px;

            display: block;

        }

        .article-content {

            color: var(--text-light-gray);

            line-height: 1.7;

        }

        .article-content h2 {

            margin-top: 2.5em;

            margin-bottom: 1em;

            font-size: clamp(1.8rem, 3.5vw, 2.5rem);

            border-bottom: 2px solid var(--card-purple);

            padding-bottom: 0.5em;

            color: var(--accent-mint);

        }

        .article-content h3 {

            margin-top: 2em;

            margin-bottom: 0.8em;

            font-size: clamp(1.4rem, 2.5vw, 1.8rem);

            color: white;

        }

        .article-content p,

        .article-content ul,

        .article-content ol {

            font-size: 1.1rem;

            margin-bottom: 1.5rem;

            max-width: 800px;

        }

        .article-content ul,

        .article-content ol {

            padding-left: 40px;

        }

        .article-content li {

            margin-bottom: 0.75rem;

        }

        .article-content strong {

            color: white;

            font-weight: bold;

        }

        .article-content code {

            background-color: var(--bg-dark-purple);

            padding: 2px 6px;

            border-radius: 4px;

            font-family: monospace;

            color: var(--accent-mint);

        }

        .article-content table {

            width: 100%;

            max-width: 800px;

            border-collapse: collapse;

            margin: 2rem 0;

            background-color: var(--card-purple);

            border: 1px solid rgba(161, 255, 216, 0.2);

            font-size: 1rem;

        }

        .article-content th,

        .article-content td {

            text-align: left;

            padding: 15px;

            border-bottom: 1px solid var(--bg-dark-purple);

        }

        .article-content th {

            background-color: var(--bg-dark-purple);

            font-family: var(--font-heading);

            color: var(--accent-mint);

            text-transform: uppercase;

        }

        .article-content a {

            font-weight: bold;

            text-decoration: underline;

        }

        .article-content a:hover {

            text-decoration: none;

        }


#blog-list {
    padding-top: 60px;
    padding-bottom: 100px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--card-purple);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-light-gray);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    border-left: 4px solid transparent;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-left-color: var(--accent-mint);
}
.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}
.blog-card-content {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card-content h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: none;
    font-family: var(--font-heading);
}
.blog-card-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    flex-grow: 1;
    opacity: 0.9;
    line-height: 1.6;
}
.read-more {
    font-family: var(--font-heading);
    color: var(--accent-mint);
    font-weight: bold;
    align-self: flex-start;
    margin-top: auto;
    transition: color var(--transition-fast);
}
.blog-card:hover .read-more {
    color: white;
}
