

header {
  text-align: left;
  margin-bottom: 40px;
}

header h1 {
  font-size: 32px;
  color: #000;
}

header p {
  font-size: 18px;
  color: #555;
  margin: 10px 0;
}

.register-btn {
  background: #152c53;
  color: #fff;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
  transition: 0.3s;
}
.container{
	margin: 7rem 1rem;
	    text-align: left;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.register-btn:hover {
  background: #45a049;
}

/* Info Section */
.info, .phase {
  margin-bottom: 40px;
}

.info ul {
  list-style: none;
  padding: 0;
}

.info ul li {
  font-size: 18px;
  margin: 5px 0;
  padding-left: 20px;
  position: relative;
}

.info ul li::before {
  content: "✔";
  color: #ed7b3e;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Phase Sections */
.phase h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
  font-weight: bolder;
}

.phase p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
      padding: 20px;
  }

  header h1 {
      font-size: 24px;
  }

  header p, .phase p, .info ul li {
      font-size: 16px;
  }

  .register-btn {
      padding: 10px 20px;
      font-size: 16px;
  }
}