/* Small Header for Result Pages */
.small-header {
    padding: 40px 20px 0;
    background: url('../images/back.jpg') center top;
    background-size: 100% auto;
    background-repeat: repeat-y;
}

.small-header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.small-header-logo {
    width: 240px;
}

.small-header-graphic {
    width: 100px;
    position: relative;
    z-index: 2;
    margin-bottom: -50px; /* Overlap Adjustment */
}

@media (max-width: 768px) {
    .small-header-logo {
        width: 200px;
    }

    .small-header-graphic {
        width: 80px;
        margin-bottom: -40px; /* Responsive Overlap */
    }
} 