.badge-discount {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #d80027;
    color: white;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 12px;
    font-weight: 500;
    z-index: 10;
  }
  
  .old-price {
    color: #888;
    text-decoration: line-through;
    margin-right: 5px;
    font-size: 16px;
  }
  
  .pulse-timer {
    display: inline-block;
    font-size: 14px;
    color: #d80027;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    background-color: #fff0f0;
    box-shadow: 0 0 0 rgba(216, 0, 39, 0.7);
    animation: pulseShadow 1.5s infinite;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 10px;
  }
  
  @keyframes pulseShadow {
    0% {
      box-shadow: 0 0 0 0 rgba(216, 0, 39, 0.7);
    }
    70% {
      box-shadow: 0 0 0 8px rgba(216, 0, 39, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(216, 0, 39, 0);
    }
  }
  .price-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 12px;
    background: #fff0f0;
    border: 1px solid #f5c2c2;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    box-shadow: 0 2px 6px rgba(216, 0, 39, 0.1);
  }
  
  .price-label {
    color: #d80027;
    font-weight: 600;
  }
  
  .price-current {
    color: #d80027;
    font-size: 18px;
    font-weight: 700;
  }
  
  .price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 15px;
  }
  
  .timeline {
    position: relative;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 3px solid #ccc;
  }
  .timeline-item {
    margin-bottom: 30px;
  }
  .timeline-time {
    font-weight: bold;
    color: #c00113;
  }
  .timeline-content h5 {
    margin-top: 5px;
    font-size: 18px;
  }
  .no-hover-color {
    color: #c00113;
    text-decoration: underline;
  }
  
  .no-hover-color:hover {
    color: #c00113;
  }
  
  .card-custom {
    position: relative;
    height: auto;
    background: #ffffff;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin: 0 auto;
    padding: 40px 20px;
    -webkit-box-shadow: 0px 0px 13px 0px rgba(82, 90, 101, 0.12);
    -moz-box-shadow: 0px 0px 13px 0px rgba(82, 90, 101, 0.12);
    box-shadow: 0px 0px 13px 0px rgba(82, 90, 101, 0.12);
    -webkit-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    overflow: hidden;
    margin-bottom: 20px;
    border: 0;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}
