.certification-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f8f8;
    padding: 40px 20px;
    text-align: center;
}

.certification-header h1 {
    font-size: clamp(2.5rem, 8vw, 60px);
    color: #980000;
    margin: 0 0 20px 0;
    line-height: 1.2;
    max-width: 90%;
}

.certification-header p {
    font-size: clamp(1rem, 3vw, 20px);
    color: #666666;
    line-height: 1.6;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

@media (min-width: 1600px) {
    .certification-header {
        padding: 60px 20px;
    }

    .certification-header h1 {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .certification-header {
        min-height: 80vh;
    }

    .certification-header p {
        max-width: 90%;
    }
}

.certification-header:focus-within {
    outline: 2px solid #980000;
    outline-offset: -5px;
}