.Page_header {
    position: relative;
    margin-top: 120px;
    text-align: center;
    padding-top: 2px;
}

.Page_header h1 {
    font-size: 48px;

}

.Page_header h2 {
    margin: 10px;
}

.Contact_option_container {
    display: flex;
    flex-direction: row;
    gap: 5px;
    height: 80px;
    border: 2px solid lightgray;
    width: 95%;
    border-radius: 20px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    color: #2e2e2e;
    text-decoration: none;
    margin-top: 20px;
}

.Contact_option_container:hover {
    background-color: lightgray;
}

.icon_wrapper {
    padding-left: 10px;
    display: block;
}

.Contact_option_container img {
    height: 40px;
    width: auto;
}

.Contact_option_container p {
    word-break: break-all;
}