.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem;
    padding: 2rem;
}

.contact-card {
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-radius: 8px;
    padding: 2.5rem;
}

.contact-card a {
    border: 2px solid;
    margin-top: 0.8rem;
    padding: 1rem 2rem;
    border-color: rgba(169, 119, 234, 0.3);
    background-color: rgba(157, 86, 249, 0.1);
    border-radius: 0.2rem;
    transition: background-color 0.35s ease, border-color 0.35s ease;
    text-decoration: none;
    color: inherit;
    text-align: center;
    color: white;
}

.contact-card a:hover {
    cursor: pointer;
    border-color: rgba(251, 255, 0, 0.6);
    background-color: rgba(196, 170, 230, 0.1);
}