* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f7fb;
    color: #1f2937;
    line-height: 1.7;
}

.main {
    width: 100%;
}

/* Right Fixed Aside */
aside {
    position: fixed;
    width: 280px;
    height: 100vh;
    overflow-y: auto;
    background: #0b5ed7;
    padding: 18px;
}

aside h2 {
    font-size: 20px;
    margin-bottom: 14px;
}

aside a {
    display: block;
    text-decoration: none;
    color: #ffffff;
    padding: 9px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
}

/* Main Content */
.content {
    margin-left: 280px;
}

.article-content {
    width: 100%;
}

h2 {
    font-size: 28px;
    margin-bottom: 14px;
}

p {
    margin-bottom: 16px;
}

section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 26px;
    margin-bottom: 24px;
}

ul,
ol {
    padding-left: 24px;
}

li {
    margin-bottom: 10px;
}

.eyebrow {
    color: #2563eb;
    font-weight: 700;
}

.lead {
    font-size: 18px;
    color: #4b5563;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin: 22px 0;
}

.button {
    text-decoration: none;
    padding: 11px 16px;
    border-radius: 6px;
    font-weight: 700;
}

.primary {
    background: #2563eb;
    color: white;
}

.secondary {
    background: #e0ecff;
    color: #1d4ed8;
}

.info-visual,
.quick-grid,
.stats {
    display: grid;
    gap: 16px;
}

.stats,
.quick-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat,
.mini-card,
.highlight,
.card-top {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #e5e7eb;
    padding: 12px;
    text-align: left;
}

th {
    background: #f1f5f9;
}

#footer {
    margin-left: 280px;

}

/* Mobile */
@media (max-width: 900px) {
    aside {
        position: static;
        width: auto;
        height: auto;
        margin: 16px;
    }

    .content {
        margin: 0;
        padding: 16px;
        max-width: none;
    }

    .article-content {
        width: 100%;
    }
    #footer {
        margin: 0;
        padding: 16px;
        max-width: none;

}
}