* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    min-height: 100vh;
    /* padding: 20px; */
}

.contact-card {
    width: 100%;
    max-width: 460px;
    text-align: center;
    margin: 110px auto 40px;
    padding: 0;
    position: relative;
    left: auto;
    top: auto;
}

.contact-card header {
    margin-bottom: 32px;
}

.contact-card header h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
    text-transform: uppercase;
    text-decoration: underline;
}

.contact-card header p {
    color: #888;
    font-size: 0.95rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-inline: 0;
}

.link-item {
    display: flex;
    align-items: center;
    background: #111;
    padding: 18px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    border: 1px solid #222;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.link-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    background: #181818;
}

.link-item:active {
    transform: scale(0.97);
    background: #1a1a1a;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: #fff;
    color: #000;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.text-box {
    text-align: left;
    flex-grow: 1;
}

.text-box span {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-box p {
    font-size: 1rem;
    font-weight: 600;
}

.arrow {
    color: #b3afaf;
    font-size: 0.8rem;
}

.highlight {
    border: 1px solid #fff;
}

.contact-card footer {
    margin-top: 34px;
    font-size: 0.78rem;
    color: #666;
}

@media (min-width: 1024px) {
    body {
        /* padding: 0 24px 40px; */
        background: linear-gradient(180deg, #faf8f4 0%, #ffffff 32%, #ffffff 100%);
    }

    .contact-card {
        max-width: 720px;
        margin: 48px auto 56px;
        padding: 52px 56px 40px;
        background: #fff;
        border: 1px solid #eee4d7;
        border-radius: 32px;
        box-shadow: 0 26px 60px rgba(50, 40, 27, 0.08);
    }

    .contact-card header {
        margin-bottom: 38px;
    }

    .contact-card header h1 {
        font-size: 2.75rem;
        text-decoration: none;
        letter-spacing: -0.04em;
    }

    .contact-card header p {
        font-size: 1.05rem;
        color: #6e6a63;
    }

    .contact-links {
        gap: 18px;
    }

    .link-item {
        padding: 22px 24px;
        border-radius: 20px;
        background: #111;
    }

    .icon-box {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        font-size: 1.35rem;
        margin-right: 18px;
    }

    .text-box span {
        font-size: 0.78rem;
    }

    .text-box p {
        font-size: 1.08rem;
    }

    .arrow {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    /* body {
        padding: 16px;
    } */

    .contact-card {
        margin-top: 92px;
        margin-bottom: 32px;
        padding-inline: 20px;
    }

    .contact-card header h1 {
        font-size: 1.8rem;
    }

    .contact-card header p {
        margin-bottom: 0;
    }
}
