body {
    background-color: #ffffff;
    color: #202124;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    margin: 0;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 24px 48px;
    text-align: center;
}

h1 {
    font-weight: 400;
    font-size: 48px;
    margin: 0 0 32px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    max-width: 360px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    border: 1px solid #dadce0;
    border-radius: 999px;
    background-color: #ffffff;
    color: #1a73e8;
    text-decoration: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
}

.contact-item:hover,
.contact-item:focus-visible {
    border-color: transparent;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.contact-item:focus-visible {
    outline: none;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: currentColor;
}

.contact-text {
    font-size: 16px;
    font-weight: 500;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
