body, html {
    height: 100%;
    margin: 0;
}

.bg-image {
    background-image: url('../../images/sqa2_logo1.png');
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    width: 100%;
    z-index: -1;
    opacity: 0.3; /* Optional: adjust opacity to make text readable */
}

.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
}

.logo {
    width: 100px; /* Adjust size as needed */
}

.content-area {
    padding-top: 100px;
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
}