.contact {
    /* margin-top: 73px; */
    margin-bottom: 90px;
}

.contact .banner {
    background: linear-gradient(
        90deg,
        #ddf9f6ed 0%,
        rgb(200 231 191 / 62%) 100%
    );
}

.cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 60px;
}

.card {
    background-color: var(--card-background);
    border-radius: 15px;
    padding: 40px 20px;
    width: 280px;
    text-align: center;
    box-shadow: 1px 1px 9px 1px rgb(138 115 40 / 35%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 15px 40px rgba(0,0,0,0.1); */
}

.card i {
    font-size: 22px;
    color: #55544e;
    border-radius: 50%;
    box-shadow: 0px 0px 2px 1px #d9cb90;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 43%;
    top: -20px;
    background: white;
}

.card h6 {
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.card p {
    /* color: var(--text-color);
    font-size: 1.1rem;
    font-weight: bold; */
}

@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }

    .container {
        width: 100%;
        padding: 0px;
    }
}
