.discount-banner {
    background-color: #eaf6ff; /* Açık mavi arkaplan */
  }
  
  /* Kadın görseli için isteğe bağlı eklemeler */
  .discount-lady {
    max-height: 400px; /* Çok büyük görünmesini engellemek için sınırlama */
    margin-bottom: 20px;
  }
  
  .discount-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .discount-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    max-width: 500px;
  }
  
  /* Geri Sayım Konteyneri */
  .countdown-container .countdown-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-right: 10px;
    text-align: center;
    min-width: 80px; /* Kutuların sabit genişlikte görünmesi için */
  }
  
  .countdown-box:last-child {
    margin-right: 0;
  }
  
  .countdown-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #f85d2b; /* Örnek turuncu */
  }
  
  .countdown-label {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
  }
  