* {
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, sans-serif;
}
    /* HEADER WITH LOGO */
.header-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #0b3d91;
    color: #fff;
    padding: 20px;
}

.header-container img {
    width: 70px;
    height: auto;
}

.header-text h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.header-text p {
    margin: 2px 0 0;
    font-size: 14px;
}