.registration-section {
  background-image:
    linear-gradient(to bottom, rgba(8, 44, 44, 0.8), rgba(0, 0, 0, 0.9)),
    url('../images/companies/company_register_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;
}

.registration-content {
  max-width: 900px;
  margin: auto;
}

.registration-content h2 {
  font-size: 5em;
  color: #cfff04;
  /* Bright lime */
  margin-bottom: 20px;
  font-weight: bold;
}

.registration-content p {
  font-size: 2em;
  margin-bottom: 160px;
  margin-top: 120px;
  line-height: 1.7;
  color: #f0f0f0;
}

.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) {

  .registration-section {
    padding: 300px 50px

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

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

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