html, body {
    min-height: 100vh;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


.hero a {
    text-decoration: underline;
    text-decoration-color: inherit;
    text-decoration-style: wavy;
    color: inherit;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.hero a:hover {
    color: rgb(0, 153, 255);
    text-decoration-color: rgb(0, 153, 255)
}

.faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    flex: 1 0 auto;
}

.faq p {
    text-align: center;
}

.faq hr {
    width: 100%;
    border: 1px solid #ccc;
}