.contact-card {
    width: 320px;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.contact-card h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #111;
}

.contact-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 8px 0 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 12px;
}

.contact-btn {
    margin-top: 16px;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #f29200, #ffb347);
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 146, 0, 0.4);
}


/* Page center wrapper */
.page-center {
    min-height: 100vh;
    display: flex;
    align-items: center;     /* vertical */
    justify-content: center; /* horizontal */
    background: #f7f8fc;     /* optional */
}

/* Card styles */
.contact-card {
    width: 420px;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    font-family: 'Inter', sans-serif;
    text-align: center;
}
