﻿
.contact-card.boxed-section {
    border-radius: 8px;
}

.contact-card .card-icon {
    color: var(--light-color);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon {
    background-color: var(--secondary-color);
    transform: translateY(-4px);
}

.contact-card .card-icon i {
    font-size: 42px;
    color: var(--border-color);
    transition: all 0.3s ease;
}

.contact-card:hover .card-icon i {
    color: var(--border-color);
}

.card-content h3 {
    color: var(--light-color);
    font-style: italic;
}

.card-info {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    margin-bottom: 0;
}

    .card-info h4 {
        color: var(--secondary-color);
    }

    .card-info span {
        color: var(--light-color);
    }

.my-60 {
    margin-top: 60px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .my-60 {
        margin-top: 48px;
        margin-bottom: 48px;
    }
}
