.page2 .section1 {
    height: 300px;
    background-color: #eff0f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page2 .section1 h1 {
    font-size: 3rem;
    color: #032893;
    margin-bottom: 25px;
}

.page3 {
    padding: 45px 25px;
}

.page3 .section1 {
    margin-bottom: 50px;
}

.page3 .section1 h1 {
    text-align: center;
    font-size: 3rem;
    color: #032893;
    margin-bottom: 20px;
}

.page3 .section1 p {
    text-align: center;
    margin-bottom: 20px;
}

.page3 .section2 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 25px;
}

.page3 .section2 > .left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page3 .section2 > .right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page3 .section2 form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page3 .section2 .card {
    display: flex;
    gap: 10px;
    align-items: center;
}
.page3 .section2 .card img {
    height: 75px;
    width: 75px;
}

.page3 .section2 button {
    width: fit-content;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: var(--round);
    color: #fff;
    border: 2px solid var(--btn-bg);
    background: var(--btn-bg);
}

form {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form input,
select {
    padding: 7px;
}

@media (max-width: 600px) {
    .page3 .section2 {
        flex-wrap: wrap;
    }

    .page3 .section2 > .right {
        width: 100%;
    }

    .page3 .section2 button {
        width: 100%;
    }
}