.elementor-33828 .elementor-element.elementor-element-e4bd7b2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-33828 .elementor-element.elementor-element-d67a853{--display:flex;}.elementor-33828 .elementor-element.elementor-element-a690d06{--display:flex;}.elementor-33828 .elementor-element.elementor-element-ac37ec2{--display:flex;}/* Start custom CSS for container, class: .elementor-element-d67a853 *//* InvestSnips Brand Colors & Typography */
:root {
    --primary-color: #0f1c3f;   /* Dark Blue from Footer/Header */
    --accent-color: #4CAF50;    /* Green from buttons/highlights */
    --text-color: #333333;      /* Dark Grey for body text */
    --bg-light: #f9f9f9;        /* Light Grey for backgrounds */
    --border-color: #e0e0e0;    /* Light Grey for borders */
    --font-heading: 'Inter', sans-serif; /* Modern Sans-Serif */
    --font-body: 'Roboto', sans-serif;   /* Clean Reading Font */
}

/* General Layout Adjustment for Elementor */
.elementor-widget-text-editor {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

/* 1. TOC Box (#toc) */
#toc {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

#toc h3 {
    margin-top: 0;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
}

#toc ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

#toc li {
    margin-bottom: 8px;
}

#toc a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.2s;
}

#toc a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* 2. Disclaimer Box (.disclaimer) */
.disclaimer {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 15px;
    margin-bottom: 30px;
    font-size: 0.9em;
    color: #856404;
    border-radius: 4px;
}

/* 3. Data Table (.data-table) */
.table-container {
    overflow-x: auto; /* Horizontal Scroll on Mobile */
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px; /* Force scroll on small screens */
}

.data-table th, .data-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    cursor: pointer; /* Signal clickable for sort */
    position: relative;
}

.data-table th:hover {
    background-color: #1a2b5e; /* Slightly lighter shade */
}

/* Sort Arrows (Pseudo-elements) */
.data-table th::after {
    content: "↕";
    font-size: 0.8em;
    margin-left: 5px;
    opacity: 0.5;
}

.data-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

.data-table tr:hover {
    background-color: #e8f5e9; /* Light Green Hover */
}

/* 4. FAQ Accordion (.faq, .faq-item, etc.) */
.faq {
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.faq-q {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-q:hover {
    color: var(--accent-color);
}

.faq-q::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: normal;
}

.faq-item.active .faq-q::after {
    content: "−"; /* Warning: Use standard hyphen/minus if encoding issues arise */
}

.faq-item.active .faq-q {
    color: var(--accent-color);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 10px;
}

.faq-item.active .faq-a {
    padding-bottom: 20px; /* Space at bottom when open */
}

/* 5. Reading Progress Bar (Hidden by default, shown via JS) */
#progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9999;
}

#progress-bar {
    height: 4px;
    background: var(--accent-color);
    width: 0%;
    transition: width 0.1s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .faq-q { font-size: 1rem; }
}/* End custom CSS */