.contact-wrapper {
    width: 90%;
    max-width: 800px;
    margin: 30px auto;

    color: white;
    text-shadow: 0 0 3px #000;
}

.navigation-cards h2 {
    margin: 20px 0 10px;
    color: #ffcc00;
    font-size: 1.5em;
    text-align: center;
}

.navigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 2rem;
}

.navigation-card {
    background: rgba(154, 100, 255, 0.5);
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    color: white;
    box-shadow: 0 0 12px #a584e4;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;

    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
}


.navigation-card:hover {
    transform: scale(1.05);
}

.navigation-card .icon {
    font-size: 1.8em;
    margin-bottom: 5px;
}

.navigation-card .label {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 5px;
    color: #ffcc00;
}

.navigation-card .value {
    font-size: 1em;
    word-break: break-word;
    color: whitesmoke;
}

.navigation-card {
    -webkit-tap-highlight-color: transparent;
}


#a:hover {
    box-shadow: 0 0 30px rgb(138, 43, 226);
}

#b:hover {
    box-shadow: 0 0 30px rgb(226, 43, 83);
}

#c:hover {
    box-shadow: 0 0 30px rgb(43, 226, 165);
}

#d:hover {
    box-shadow: 0 0 30px rgb(43, 76, 226);
}
