:root {
    --primary-color: #0072ff;
    --secondary-color: #00c6ff;
    --accent-gradient: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    --bg-dark: #0a0a0a;
    --bg-card: #161616;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #333333;
    --spacing-container: 1200px;
    --transition: all 0.3s ease;
    --amazon-orange: #ff9900;
    --choice-bg: #232f3e;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    margin-left: 10px;
}

.btn-secondary:hover {
    background: rgba(0, 114, 255, 0.1);
}

.gradient-text {
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list a {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-list a:hover {
    color: var(--text-main);
}

.btn-nav {
    background: var(--accent-gradient);
    padding: 10px 24px;
    border-radius: 20px;
    color: white !important;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 60% 50%, rgba(0, 114, 255, 0.08) 0%, rgba(10, 10, 10, 1) 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.badges {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.badge {
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-choice {
    background-color: var(--choice-bg);
    color: white;
    border: 1px solid #3a4b5f;
}

.badge-seller {
    background-color: var(--amazon-orange);
    color: #111;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 550px;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    font-size: 1rem;
    color: var(--text-main);
}

.stars {
    color: var(--amazon-orange);
    font-size: 1.2rem;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.trust-indicators {
    display: flex;
    gap: 40px;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item .icon {
    font-size: 1.2rem;
}

.image-wrapper {
    position: relative;
    z-index: 1;
}

.image-wrapper img {
    border-radius: 30px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
    animation: float 6s ease-in-out infinite;
    width: 100%;
    height: auto;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-card {
    position: absolute;
    background: rgba(22, 22, 22, 0.9);
    backdrop-filter: blur(15px);
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.card-1 {
    top: 15%;
    right: -30px;
}

.card-2 {
    bottom: 15%;
    left: -30px;
}

.card-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.card-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Features */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 114, 255, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

.feature-block {
    margin-bottom: 2.5rem;
}

.feature-block p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.product-review > p {
    margin-bottom: 2rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Specs */
.bg-dark {
    background: #050505;
}

.specs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.specs-table th,
.specs-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.specs-table th {
    color: var(--text-muted);
    font-weight: 500;
    width: 40%;
}

.specs-table td {
    font-weight: 600;
    color: var(--text-main);
}

.visual-placeholder {
    background: var(--bg-card);
    height: 500px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px dashed var(--border-color);
    position: relative;
}

.chair-outline {
    width: 200px;
    height: 300px;
    position: relative;
    border: 2px solid var(--text-muted);
    border-radius: 10px;
    opacity: 0.3;
}

.chair-back {
    width: 100%;
    height: 60%;
    border-bottom: 2px solid var(--text-muted);
}

.chair-seat {
    width: 100%;
    height: 10%;
    background: rgba(255, 255, 255, 0.1);
}

.chair-base {
    width: 2px;
    height: 30%;
    background: var(--text-muted);
    margin: 0 auto;
    position: relative;
}

.chair-base::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50px;
    width: 100px;
    height: 2px;
    background: var(--text-muted);
}

.dimension-line {
    position: absolute;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px;
}

.height-line {
    left: 20px;
    top: 20%;
    bottom: 20%;
    width: 2px;
}

.height-line span {
    position: absolute;
    left: 10px;
    white-space: nowrap;
    background: var(--bg-card);
    padding: 2px 5px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    color: var(--primary-color);
}

.width-line {
    bottom: 40px;
    left: 30%;
    right: 30%;
    height: 2px;
}

.width-line span {
    position: absolute;
    top: 10px;
    background: var(--bg-card);
    padding: 2px 5px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    color: var(--primary-color);
}

.visual-caption {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.review-stars {
    color: var(--amazon-orange);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.review-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* CTA */
.cta-section {
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 100px 40px;
    border-radius: 40px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 114, 255, 0.2), transparent 70%);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 5px;
    color: var(--secondary-color);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.small-text {
    font-size: 0.9rem;
    margin-top: 20px;
    margin-bottom: 0;
    opacity: 0.7;
}

/* Related */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.related-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid transparent;
    display: block;
}

.related-card:hover {
    border-color: var(--border-color);
    background: #202020;
    transform: translateY(-5px);
}

.related-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.related-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.related-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: #050505;
    padding: 100px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-col h4 {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-btns {
        justify-content: center;
    }

    .badges {
        justify-content: center;
    }

    .rating-summary {
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }

    .specs-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-card);
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .card-1,
    .card-2 {
        display: none;
    }
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Ergonomic Guide Page Styles */
.page-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ergonomic-guide {
    margin-top: 60px;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs span {
    color: var(--text-main);
}

/* Layout Grid */
.guide-layout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    position: relative;
    padding-bottom: 80px;
}

.guide-article {
    min-width: 0;
    /* Prevents overflow in grid */
}

/* Sidebar */
.guide-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.toc-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.toc-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list a {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: block;
    padding-left: 15px;
    border-left: 2px solid transparent;
    transition: var(--transition);
}

.toc-list a:hover,
.toc-list a.active {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

/* Author Box */
.author-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--text-muted);
    /* Placeholder */
    object-fit: cover;
}

.author-info span {
    display: block;
}

.author-name {
    font-weight: 700;
    color: var(--text-main);
}

.post-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Drop Cap & Typography Enhancements */
.lead-paragraph::first-letter {
    float: left;
    font-size: 3.5rem;
    line-height: 0.8;
    font-weight: 700;
    margin-right: 12px;
    color: var(--primary-color);
}

.feature-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Responsive Guide */
@media (max-width: 1024px) {
    .guide-layout-grid {
        grid-template-columns: 1fr;
    }

    .guide-sidebar {
        display: none;
        /* Hide sidebar on mobile/tablet or move to bottom */
    }
}

.guide-intro {
    margin-bottom: 60px;
    text-align: center;
}

.guide-intro h2 {
    font-size: 2.5rem;
    color: var(--text-main);
}

.guide-intro p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.guide-section {
    margin-bottom: 60px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.guide-section:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.guide-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.guide-title {
    color: var(--secondary-color);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.guide-section>p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 30px;
}

.guide-subsection {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 2px solid var(--border-color);
}

.guide-subsection:last-child {
    margin-bottom: 0;
}

.guide-subsection h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.guide-subsection p {
    color: var(--text-muted);
    font-size: 1rem;
}

.guide-hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

/* Sidebar Top Pick */
.top-pick-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.top-pick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
}

.top-pick-label {
    display: inline-block;
    background: var(--amazon-orange);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.top-pick-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.top-pick-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.top-pick-btn {
    display: block;
    width: 100%;
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
}

.top-pick-btn:hover {
    background: var(--secondary-color);
    color: white;
}

/* Key Takeaways Box */
.takeaway-box {
    background: rgba(0, 114, 255, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    border-radius: 4px 15px 15px 4px;
    margin-bottom: 50px;
}

.takeaway-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.takeaway-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.takeaway-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.takeaway-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Accordion FAQ */
.faq-details {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-details[open] {
    border-color: var(--primary-color);
}

.faq-summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    /* Hide default triangle */
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-details[open] .faq-summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 10px;
}

.feature-block,
.pain-point-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.feature-block:hover,
.pain-point-block:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.feature-block h3,
.pain-point-block h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Responsive adjustments for guide */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .ergonomic-guide {
        margin-top: 40px;
    }

    .guide-section {
        padding: 25px;
    }

    .guide-section h2 {
        font-size: 1.6rem;
    }

    .guide-subsection {
        padding-left: 15px;
    }
}

/* Page Specific Overrides */
.ergonomic-page {
    background-color: black !important;
}

.ergonomic-page .section-padding {
    padding-top: 180px;
}

/* Article Typography & Spacing Enhancements */
.article-header h1 {
    margin-bottom: 3rem;
    /* Increased spacing after title */
}

.article-content p {
    margin-bottom: 2rem;
    line-height: 1.85;
    font-size: 1.15rem;
    color: #cccccc;
}

.article-content h2 {
    margin-top: 4rem !important;
    /* Force space before new sections */
    margin-bottom: 1.5rem;
}

.article-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 2.5rem;
}

.article-content li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.article-content section {
    margin-bottom: 4rem;
}
/* Pros and Cons Styling */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.pros-box, .cons-box {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.pros-box h4, .cons-box h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros-box h4 {
    color: #4cd964; /* Green */
}

.cons-box h4 {
    color: #ff3b30; /* Red */
}

.pro-list, .con-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro-list li, .con-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pro-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4cd964;
    font-weight: bold;
}

.con-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #ff3b30;
    font-weight: bold;
}

/* Responsive Pros/Cons */
@media (max-width: 768px) {
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* FAQ Section Enhancements */
#faq {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item h3 {
    color: var(--text-main);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3::before {
    content: 'Q.';
    color: var(--secondary-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    opacity: 0.5;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 2rem;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item p {
        padding-left: 0;
    }
}
