.elementor-6124 .elementor-element.elementor-element-3498423{--display:flex;}/* Start custom CSS for html, class: .elementor-element-10de116 *//* --- Google Web Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600;700&display=swap');

/* --- Root Variables for Clean Blue Theme --- */
:root {
    --primary-color: #1a73e8;     /* Google Blue */
    --secondary-color: #f1f3f4;   /* Light Gray/Blue */
    --accent-color: #ea4335;      /* Google Red for contrast */
    --text-color: #202124;
    --border-color: #dadce0;
    --bg-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif; 
    background-color: #e8eaed; 
    color: var(--text-color);
    line-height: 1.8;
    font-size: 12px; /* Strict constraint: 12px for normal text */
}

.container {
    max-width: 900px; 
    margin: 40px auto; 
    padding: 0 20px;
}

/* --- Article & Typography --- */
.pillar-content {
    background: var(--bg-white);
    padding: 45px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* --- Stylish Headings Strategy (Strict 18px) --- */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    font-size: 18px; /* Strict constraint: 18px */
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
    display: inline-block; 
    width: 100%;
}

/* Stylish Gradient Bottom Line for all Headings */
h1::after, h2::after, h3::after, h4::after, h5::after, h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px; /* Stylish short underline */
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.main-title {
    color: var(--primary-color);
    margin-top: 0;
}

p {
    margin-bottom: 15px;
    font-size: 12px; /* Strict constraint: 12px */
}

a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
}

a:hover {
    text-decoration: underline;
    color: var(--accent-color);
}

/* --- Table of Contents (Normal/No Background) --- */
.toc-box {
    background-color: transparent; /* Background Removed */
    border: none; /* Border Removed */
    padding: 10px 0;
    margin: 30px 0;
}

.toc-box h2 {
    margin-top: 0;
}

.toc-box ul {
    list-style: none;
    padding-left: 10px;
}

.toc-box li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-size: 12px;
}

.toc-box li::before {
    content: '➤'; /* Simple arrow */
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 12px;
}

/* --- Step Guide Box (Flat Design) --- */
.step-guide {
    background-color: #e8f0fe; 
    border: 1px solid #d2e3fc;
    padding: 20px;
    border-radius: 6px;
    margin: 25px 0;
}

.step-guide p {
    margin-bottom: 10px;
}

.step-guide p strong {
    color: #174ea6;
}

/* --- Responsive Table --- */
.table-container {
    overflow-x: auto;
    margin: 25px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 14px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    font-size: 12px; /* Strict constraint: 12px */
}

th {
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-weight: 700;
}

tr:hover {
    background-color: #f8f9fa;
}

/* --- Lists --- */
.detailed-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.detailed-list li {
    margin-bottom: 10px;
    font-size: 12px; /* Strict constraint: 12px */
}

/* --- FAQs Accordion (Minimalist Style) --- */
.faq-container {
    margin-top: 40px;
}

.faq-box {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 5px;
}

.faq-box summary {
    font-size: 12px; /* Strict constraint: 12px */
    font-weight: 600;
    color: var(--text-color);
    padding: 15px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    outline: none;
}

.faq-box summary::-webkit-details-marker {
    display: none;
}

.faq-box summary::after {
    content: '+';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-size: 16px; 
    font-weight: normal;
}

.faq-box[open] summary::after {
    content: '−';
}

.faq-box p {
    padding: 0 0 15px 0;
    color: #5f6368;
    font-size: 12px;
}

/* --- Conclusion --- */
.conclusion-box {
    background-color: #fef7e0;
    border: 1px solid #fce8b2;
    padding: 25px;
    border-radius: 6px;
    margin-top: 40px;
}

.conclusion-box h2 {
    margin-top: 0;
    color: #b06000;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .container {
        margin: 20px auto;
    }
    
    .pillar-content {
        padding: 20px;
    }
}/* End custom CSS */