.header_component {
    .container {
        display: flex;
        justify-content: center;
        gap: 8px;
        align-items: center;
        padding: 1rem 0;
        margin-bottom: 24px;
        background-color: #002062;
        border-bottom: 2px solidrgb(1, 21, 61);
        box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.4);
        a {
            text-decoration: none;
            color: #fff;
            display: flex;
            gap: 8px;
            align-items: center;
        }
        h1 {
            font-family: 'Inter', sans-serif;
            color: #fff;
            font-size: 3rem;
            font-weight: 700;
            margin: 0;
            line-height: 1;
        }
        img {
            height: 50px;
        }
    }
}