/* Reset and background */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-image: url('../images/Web-Banner.jpg'); /* Adjust path if needed */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Wrapper for center content */
.container-wrapper {
  max-width: 1000px;
  padding: 20px;
}

/* Text styling */
.text-content p {
  color: white;
  font-size: 20px;
  margin-bottom: 20px;
}

.text-content a {
  color: #aee6ff;
  text-decoration: underline;
}

/* Button styling */
.custom-btn {
  background-color: #ffffff;
  color: #003459;
  font-weight: bold;
  border: 1px solid #014a81;
  margin: 10px 0;
  padding: 15px;
  font-size: 16px;
  line-height: 1.5;
}

/* Responsive for small screens */
@media (max-width: 768px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px;
  }

  .text-content p {
    font-size: 18px;
  }
}
