/* Base styles for all WPBakery buttons */
.vc_btn3 {
  border-radius: 3px !important;
  padding: 12px 24px !important;
  font-family: 'Montserrat', sans-serif !important;
  transition: all 0.3s ease;
}

/* Primary button style */
.vc_btn3.primary-btn {
  background-color: #7A0000 !important;
  color: #EAEAEA !important;
  border: none !important;
}

/* Primary button hover */
.vc_btn3.primary-btn:hover {
  background-color: #5c0000 !important; /* Slightly darker */
  color: #fff !important;
}

/* Secondary button style */
.vc_btn3.secondary-btn {
  background-color: #EAEAEA !important;
  color: #7A0000 !important;
  border: 2px solid #7A0000 !important;
}

/* Secondary button hover */
.vc_btn3.secondary-btn:hover {
  background-color: #7A0000 !important;
  color: #EAEAEA !important;
  border-color: #7A0000 !important;
}