body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    /* Light background for contrast */
}

.contact-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
}

.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the title */
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f0f0f0;
}

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: #030303;
    /* Updated color for back icon */
    font-size: 40px;
    /* Updated font size for back icon */
    fill: #030303;
}

.title {
    font-size: 24px;
    margin: 0;
    color: #030303;
    /* Updated color for title */
    font-family: 'Roboto', sans-serif;
}

.buttons-container {
    padding: 100px 0px 0px 0px;
}

.contact-button {
    cursor: pointer;
    width: 100%;
    height: 64px;
    padding: 0px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    box-sizing: border-box;
    border-radius: 8px;
    background-color: #4c9eea;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    line-height: 16px;
    outline: none;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-button .icon {
    font-size: 21px;
    width: 21px;
    height: 21px;
    color: #ffffff;
    fill: #ffffff;
}

.contact-button .text {
    font-size: 14px;
}

.contact-button:hover {
    background-color: #357ABD;
    /* Darker blue for hover effect */
}

.contact-button:active {
    transform: scale(0.98);
}

.copyright {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    color: #030303;
    /* Color of the copyright text */
    display: flex;
    align-items: center;
}

.copyright svg {
    width: 20px;
    height: 20px;
    fill: #030303;
    /* Color of the copyright icon */
    margin-right: 5px;
}

.box-contact-2-col,
.box-contact-1-col {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

.box-contact-2-col img,
.box-contact-1-col img {
    width: auto;
}

@media (max-width :1023px) {
    .buttons-container {
        padding: 66px 16px 16px 16px;
    }
}

@media (min-width: 1024px) {
    .buttons-container {
        padding: 32px 0px;
        width: 688px;
        height: calc(100vh - 72px);
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
}

.buttons-container {
    text-align: center;
}

.buttons-container img {
    width: auto;
}

/*Header contact in popup*/
.header-not-contact {
    display: none !important;
}

.title-contact-popup {
    position: relative;
    top: 0px;
    height: 72px;
    color: #000000;
    display: none;
    font-size: 18px;
    font-weight: 700;
}

.title-contact-popup.show {
    display: flex;
    align-items: center;
    justify-content: center;
}