.information {
    background-color: var(--blue-color);
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid var(--border);
}

.information h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.information p {
    font-size: 16px;
    margin-bottom: 10px;
}

.links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.links .image-text {
    display: flex;
    align-items: center;
    background-color: var(--blue-color);
    padding: 10px;
    border-radius: 5px;
    width: 300px;
    height: 150px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.215, 0.610, 0.355, 1);
    border: 1px solid var(--border);
}

.links .image-text img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
}

.links .image-text p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.65);
    color: #e3e6ed;
    font-size: 16px;
    font-weight: bold;
}

.links .image-text:hover {
    transform: scale(1.03);
    cursor: pointer;
}

.submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    gap: 50px;
}

.submit button {
    padding: 10px 20px;
    background-color: var(--blue-color);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.215, 0.610, 0.355, 1);
    border: 1px solid var(--border);
}

.submit button:hover {
    background-color: var(--text-color);
    color: var(--blue-color);
}