.welcomePage {
    display: flex;
    flex-direction: column;
    overflow: auto;
    width: 100%;
    padding: 0;
}

.welcomeBanner {
    background-color: white;
    color: black;
    width: 100%;
    text-align: center;
    position: relative;
    justify-content: center;
}

.welcomeBanner img {
    overflow: hidden;
    position: absolute;
    top: 1em;
    right: 1em;
    height: 5em;
}

.welcomeHeading {
    margin-top: 1em;
    font-weight: bold;
    font-size: 4em;
}

.welcomeBanner h3 {
    margin-bottom: 2em;
    font-size: 1.5em;
}

.welcomeText {
    margin: 1em 20% 1em 20%;
    font-size: 1.5em;
    text-align: left;
}

.welcomePageBlueBox {
    background-color: var(--pave-bg-color);
    color: white;
    width: 100%;
    text-align: center;
    padding: 2em 0 2em 0;
}

.discoverSteps {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 0;
    margin: 1em 20% 1em 20%;
}

.discoverSteps h3 {
    font-size: 3em;
    width: 100%;
    text-align: center;
    margin-bottom: .5em;
}

.discoverStepsLi {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1em;
}

.discoverSteps svg {
    margin-right: 1em;
    flex-shrink: 0;
}

.discoverSteps p {
    margin-bottom: 0;
}

.welcomePageButton {
    font-size: 18px;
    padding: 12px 24px;
    border-radius: 8px;
    margin: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.welcomePageSignUpButton {
    background-color: white;
    color: var(--pave-bg-color);
    --bs-btn-hover-bg: white;
    --bs-btn-hover-color: var(--pave-bg-color);
    --bs-btn-hover-border-color: var(--pave-bg-color);
}

.welcomePageLoginButton {
    color: white;
    border-color: white;
    --bs-btn-hover-bg: none;
    --bs-btn-hover-color: white;
    --bs-btn-hover-border-color: white;
}

/* Add hover effect */
.welcomePageButton:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.welcomePageBlueBox a {
    color: white;
}

.welcomePageBlueBox h3 {
    font-size: 3em;
}

.disclaimer {
    text-align: center;
    padding: 0.5em 20% 0.5em 20%;
}

.noConfidentialWarning {
    margin: 0 20% 1em 20%;
    text-align: center;
    font-weight: bold;
}