.under-construction-section {
    width: 90%;
    min-height: 50vh;
    background-image: url("./images/podcast.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  
  }
  

  
  .uc-content {
    text-align: center;
  }
  
  .uc-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 25px;
  }
  
  .uc-btn {
    padding: 12px 32px;
    background-color: #0573C1;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.3s ease;
  }
  
  .uc-btn:hover {
    background-color: #045a92;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .uc-content h1 {
      font-size: 1.8rem;
    }
  
    .uc-content p {
      font-size: 1rem;
    }
  
    .uc-btn {
      font-size: 1rem;
      padding: 10px 25px;
    }
  }
  