.contact-card-wrapper {
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-card-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 700;
}

.contact-card-desc {
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.contact-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.contact-card-btn:hover {
    opacity: 0.9;
}

.contact-card-btn-icon i {
    font-size: 16px;
}
.contact-card-btn-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}