/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #F9FAFB;
    color: #222;
}

.contact-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.note {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.4;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info h2 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
    text-transform: lowercase;
    letter-spacing: 0.03em;
    color: #111;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 6px;
    color: #333;
}

.contact-info a {
    color: #007acc;
    text-decoration: none;
}

.contact-info a:hover,
.contact-info a:focus {
    text-decoration: underline;
}
