/* css/components.css */
.cta-btn {
    background: #FF0000;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .cta-btn:hover {
    background: #fff;
    color: #FF0000;
    box-shadow: 0 0 25px #fff;
  }
  
  .card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
  }