.tenders-section {
    background-image: 
      linear-gradient(to bottom, rgba(8, 44, 44, 0.8), rgba(0, 0, 0, 0.9)), 
      url('../images/tenders/tenders_bg.png'); /* replace with actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  
    padding: 300px 100px;
    text-align: center;
    color: white;
  }
  
  .tenders-content {
    max-width: 900px;
    margin: auto;
  }
  
  .tenders-content h2 {
    font-size: 5em;
    color: #cfff04; /* Bright lime */
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .tenders-content p {
    font-size: 2em;
    margin-bottom: 160px;
    margin-top: 120px;
    line-height: 1.7;
    color: #f0f0f0;
  }

  .bold-text {
    font-weight: bold;
  }
  
  .cta-button {
    background-color: #cfff04;
    color: #002222;
    padding: 14px 35px;
    font-size: 2.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #dfff55;
    color: #001818;
  }
  

  @media (max-width: 512px) {

  .tenders-section {
    padding: 300px 50px

  }
  .tenders-content h2 {
    font-size: 50px;
            text-align: center;
  }

  .tenders-content p {
    font-size: 20px;
  }

  .cta-button {
    font-size: 18px;
  }
}