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

body {
    font-family: 'Public Sans', system-ui, sans-serif;
    color: #94A3B8;
    background-color: #0F172A;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    color: #FFFFFF;
    font-family: 'Newsreader', serif;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-top: 0;
}

h2 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: #38BDF8;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #bae6fd;
}

.top-bar {
    background-color: #000000;
    color: #94A3B8;
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 0;
}

.main-header {
    background-color: #1e293b;
    border-bottom: 1px solid #334155;
    padding: 16px 24px;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.cta-button {
    background-color: #38BDF8;
    color: #0F172A;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #7dd3fc;
    color: #0F172A;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    margin-top: 48px;
    margin-bottom: 64px;
}

@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

.article-header {
    margin-bottom: 32px;
}

.byline {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    height: 400px;
    object-fit: cover;
    margin: 32px 0;
    border: 1px solid #334155;
}

.cta-section {
    width: 100%;
    background-color: #1e293b;
    border-radius: 12px;
    padding: 48px;
    margin: 48px 0;
    border: 1px solid #334155;
    text-align: center;
}

.cta-section h2 {
    margin-top: 0;
}

.cta-logo-link {
    display: inline-block;
    margin: 24px 0;
    outline: 2px solid #38BDF8;
    outline-offset: 4px;
    border-radius: 4px;
}

.cta-logo {
    max-width: 200px;
    display: block;
    filter: brightness(0) invert(1);
}

.primary-cta {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    font-size: 1.1rem;
    padding: 16px 24px;
}

.disclaimer-section {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 24px;
    margin-top: 48px;
    font-size: 0.85rem;
    color: #64748b;
    font-style: italic;
}

.sidebar {
    position: relative;
}

.sticky-sidebar {
    position: sticky;
    top: 24px;
}

.sidebar-block {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-nav {
    list-style: none;
    padding-left: 0;
}

.sidebar-nav li {
    padding: 8px 0;
    border-bottom: 1px solid #334155;
    font-size: 0.95rem;
}

.sidebar-nav li:last-child {
    border-bottom: none;
}

.main-footer {
    background-color: #1e293b;
    border-top: 1px solid #334155;
    padding: 48px 24px;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.contact-details {
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.contact-details h5 {
    color: #94A3B8;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.footer-bottom {
    font-size: 0.85rem;
    color: #64748b;
}