.custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 12px 24px;
}

.custom-btn .elementor-icon {
  display: inline-flex;
  margin: 0 8px;
}

.custom-btn .button-text {
  display: inline-block;
}

/* Sizes */
.custom-btn.small {
  font-size: 12px;
  padding: 8px 16px;
}
.custom-btn.medium {
  font-size: 14px;
  padding: 12px 24px;
}
.custom-btn.large {
  font-size: 16px;
  padding: 16px 32px;
}

/* Primary */
.custom-btn.primary {
  background-color: #0073e6;
  color: #fff;
  border: none;
}
.custom-btn.primary:hover {
  background-color: #005bb5;
}

/* Secondary */
.custom-btn.secondary {
  background-color: transparent;
  color: #0073e6;
  border: 2px solid #0073e6;
}
.custom-btn.secondary:hover {
  background-color: #0073e6;
  color: #fff;
}

/* Tertiary */
.custom-btn.tertiary {
  background-color: #f4f4f4;
  color: #333;
  border: 1px solid #ccc;
}
.custom-btn.tertiary:hover {
  background-color: #e0e0e0;
}
