/* ==========================================================================
   ======================= Global Layout & Containers =======================
   ========================================================================== */

/* Page background wrapper */
body {
    background-color: #f8fafc;
    margin: 0;
    padding: 0;
}

/* White sheet structural layer wrapper */
.article-container-layer {
    max-width: 1000px;
    margin: 20px auto 60px auto !important;
    background-color: #ffffff;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 1px 8px rgba(0, 0, 0, 0.06);
}

/* Base structural typography and alignment for FAQ block container */
.faq-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 22px;
    padding-top: 0 !important;
}

.faq-section h2 {
    font-family: Inter, system-ui, -apple-system;
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 48px;
}


/* ==========================================================================
   ======================= Article Titles & Questions =======================
   ========================================================================== */

/* Modern Main Article Heading */
.article-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 30px;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Individual Content Block Subheadings */
.faq-question {
    font-family: Inter, system-ui, -apple-system;
    font-size: 24px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 64px 0 18px;
    line-height: 1.3;
}


/* ==========================================================================
   ========================= Body Text & Paragraphs =========================
   ========================================================================== */

/* Standard Editorial Paragraph Formatting */
.faq-answer {
    font-family: Inter, system-ui, -apple-system;
    font-size: 17px;
    line-height: 1.85;
    color: #1f2937;
    max-width: 920px;
}

/* Paragraph Bold Emphasis Rules */
.faq-answer strong {
    font-weight: 700;
    color: #0f172a;
}

/* Sectional layout padding spacing control */
.faq-block {
    margin-bottom: 55px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 40px;
}

.faq-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}


/* ==========================================================================
   ======================= Hyperlinks & Navigation ==========================
   ========================================================================== */

/* Standard Inline Paragraph Links */
.faq-answer a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid rgba(37,99,235,.35);
}

.faq-answer a:hover {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}

/* Advanced Rich SEO Internal/External Link Component */
.article-internal-link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(37, 99, 235, 0.15);
    transition: all 0.2s ease;
}

.article-internal-link:hover {
    color: #1d4ed8;
    background-color: rgba(37, 99, 235, 0.04);
    border-bottom-color: #1d4ed8;
}


/* ==========================================================================
   ============================= Bulleted Lists =============================
   ========================================================================== */

/* Inline text block nested structural lists */
.faq-answer ul {
    margin: 18px 0 18px 22px;
}

.faq-answer li {
    margin-bottom: 10px;
    margin-left: 20px;
    color: #030303;
}


/* ==========================================================================
   =========================== Highlight Callouts ===========================
   ========================================================================== */

/* Legacy Baseline Accent Styling Module */
.faq-highlight {
    background: #f1f5f9;
    border-left: 4px solid #2563eb;
    padding: 14px 18px;
    margin: 22px 0;
    font-size: 16px;
}
/* Reusable Yellow Highlighting Effect */
.highlight-yellow {
   background-color: #fef08a; /* A gorgeous, modern soft-vibrant pastel yellow */
    color: #000000 !important; /* Forces the text color to stay solid black */
    font-weight: 500;          /* Keeps it clean and bold */
    padding: 2px 6px;          /* Gives the highlight a tiny bit of breathing room */
    border-radius: 4px;        /* Softens the sharp corners of the highlight box */
    display: inline;
}
/* Native Soft Balanced Background Callout Components */
.structural-callout {
    background: #f8fafc;
    border-left: none !important; 
    border-radius: 8px; 
    padding: 20px 20px !important; 
    margin: 30px 0;
}

.structural-callout p {
    margin: 0;
    font-size: 16px;
    color: #334155;
    line-height: 1.7;
}

/* Advanced Yellow Accent Highlighting Panel Component */
.structural-callout.highlight-yellow {
    background: #fffbeb !important; 
    border-left: 4px solid #e43900 !important; 
    border-radius: 4px !important; 
    padding: 20px 24px !important; 
    box-sizing: border-box !important; 
    display: block !important; 
}

.structural-callout.highlight-yellow p {
    color: #000000 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Unique Red Highlight for Critical Callout Warning Titles */
.callout-warning-title {
    color: #dc2626 !important; /* Premium, clean editorial crimson red */
    font-weight: 700;
}


/* ==========================================================================
   ===================== Responsive Data Grid Tables ========================
   ========================================================================== */

/* Horizontal Overlap Container Shell */
.table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 25px 0;
    -webkit-overflow-scrolling: touch;
}

/* Clean Editorial Style Framework Tables */
.privacy-data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    text-align: left;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.privacy-data-table th {
    background-color: #f8fafc;
    color: #1e293b;
    font-weight: 600;
    padding: 14px 18px;
    border-bottom: 2px solid #e2e8f0;
}

.privacy-data-table td {
    padding: 14px 18px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    line-height: 1.5;
}

.privacy-data-table tr:last-child td {
    border-bottom: none;
}

.privacy-data-table tbody tr:hover {
    background-color: #f8fafc;
}


/* ==========================================================================
   ======================= Images & Graphic Captions ========================
   ========================================================================== */

/* Legacy Content Image Overlap Configurations */
.faq-section img {
    display: block;
    margin: 40px auto;
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(8, 6, 0, 1.08);
}

/* Encapsulated Advanced Image Alignment Blocks */
.article-image-wrapper {
    width: 100%;
    margin: 35px 0 50px 0;
    text-align: center;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Frameless Clean-Cut High Definition Image Renders */
.article-featured-img {
    display: block;
    width: 100%;
    max-width: 720px; 
    height: auto;
    margin: 0 auto;
    border: none; 
    box-shadow: none !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
}

/* Italicized Technical Media Index Captions */
.image-caption {
    display: inline-block;
    margin-top: 4px;
    font-size: 14px;
    color: #64748b;
    font-style: italic;
    max-width: 600px;
}




/* ==========================================================================
   =================== Mobile Viewports ==========================
   ========================================================================== */

/* Target mobile phones and small tablets */
@media screen and (max-width: 768px) {
    /* Reduce the main title size */
    .article-main-title {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }
    
    /* FIX SIDE GAPS: Reduce container margins and inner padding significantly */
    .article-container-layer {
        margin: 10px 6px 40px 6px !important; /* Lowers side margins to 6px */
        padding: 20px 10px !important;        /* Drastically lowers internal side padding */
    }
    
    /* FIX SIDE GAPS: Remove the extra side padding on the inner FAQ wrapper */
    .faq-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Scale individual section question titles */
    .faq-question {
        font-size: 20px !important;
        margin: 30px 0 12px !important;
    }

    /* Optimize Answer Body text for ultra-compact information density */
    .faq-answer {
        font-size: 15px !important;      
        line-height: 1.65 !important;    
    }

    /* Reduce spacing between distinct structural layout blocks */
    .faq-block {
        margin-bottom: 35px !important;  
        padding-bottom: 25px !important; 
    }

    /* Compress list margins inside answers */
    .faq-answer ul {
        margin: 10px 0 10px 10px !important;
    }
    
    .faq-answer li {
        margin-bottom: 6px !important;
        margin-left: 10px !important; /* Pulls bullet points closer to the edge */
    }

    /* Tighten side padding inside your callout blocks to match */
    .structural-callout {
        padding: 15px 12px !important;
        margin: 20px 0 !important;
    }
}