﻿/* Home about page styling */
.about-page .welcome-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.blueid-about-logo {
    flex-shrink: 0;
}

.client-logo {
    margin-top: 15px;
}

    .client-logo img {
        max-height: 60px;
    }

.about-page h1 {
    color: #1565c0;
}

.about-content .section-title {
    color: #1565c0;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-content .section-text {
    line-height: 1.6;
    color: #495057;
}

.compliance-notice {
    margin-top: 30px;
}

/* Responsive header for small screens */
@media (max-width: 480px) {
    .about-page .welcome-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .about-page h1 {
        font-size: 1.5rem;
    }

    .blueid-about-logo svg {
        width: 60px;
        height: 60px;
    }
}
