/* Button Color Fix - Keep "Conoce nuestras soluciones" with btn-primary green/yellow color */

/* Target the "Conoce nuestras soluciones" button specifically */
a[href="#servicios"] {
  background-color: #d3d801 !important; /* Same color as btn-primary */
}

/* Make the text black */
a[href="#servicios"] span {
  color: black !important;
}

/* Ensure hover states work properly */
a[href="#servicios"]:hover {
  opacity: 0.9 !important;
}

a[href="#servicios"]:hover span {
  color: black !important;
}

