body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.page-container {
    display: flex;
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px;
    gap: 30px;
    align-items: flex-start;
}

.logo-sidebar {
    width: 160px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
}

.logo-sidebar img {
    width: 100%;
    height: auto;
    display: block;
}

.main-content {
    flex-grow: 1;
    max-width: 900px;
    min-width: 0;
}

header {
    margin-bottom: 20px;
    border-bottom: 3px solid #004165;
    padding-bottom: 10px;
}

header h1 {
    color: #004165;
    margin: 0;
}

.content-box {
    background: white;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

footer {
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    color: #777;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

footer p.disclaimer {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.4;
    text-align: justify;
}

a {
    color: #004165;
}

a:hover {
    color: #cd2026;
}

/* Responsive design for tablets/mobile */
@media (max-width: 992px) {
    .page-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 15px;
    }

    .logo-sidebar {
        position: static;
        width: 140px;
        margin-bottom: 10px;
    }

    .main-content {
        width: 100%;
        max-width: 100%;
    }
}
