/* Contact section styles for broker cards */
.contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 20px;
    width: 100%;
}

.btn-group {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.btn-group .tf-btn {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 4px;
}

/* Make card clickable */
.clickable-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clickable-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.card-link:hover {
    text-decoration: none;
    color: inherit;
}