/* ======== YOUR ORIGINAL CSS (UNCHANGED) ======== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.continuue-for-clg-section {
  background: url("../images/Rectangle 353.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.continuue-for-clg-div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 70px 70px;
  gap: 30px;
}

.continue-join-button {
  padding: 10px 15px;
  background: #1c3f94;
  color: #fff;
  border-radius: 8px;
}

.continue-explore-button {
  padding: 10px 15px;
  background: transparent;
  color: #ee1b22;
  border: 2px solid #ee1b22;
  border-radius: 8px;
}

.continuue-for-clg-heading h2 {
  font-family: Merriweather;
  font-weight: 700;
  font-size: 36px;
  color: #1c3f94;
  text-align: center;
}

.continuue-for-clg-heading p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #1c3f94;
  width: 800px;
}

/* ======== ONLY MEDIA QUERIES BELOW ======== */

/* ----------- TABLET (max-width: 992px) ----------- */
@media (max-width: 992px) {
  .continuue-for-clg-div {
    padding: 60px 40px;
  }

  .continuue-for-clg-heading p {
    width: 90%;
    font-size: 15px;
  }

  .continuue-for-clg-heading h2 {
    font-size: 32px;
  }
}

/* ----------- MOBILE (max-width: 768px) ----------- */
@media (max-width: 768px) {
  .continuue-for-clg-div {
    padding: 50px 25px;
    gap: 25px;
  }

  .continuue-for-clg-heading h2 {
    font-size: 28px;
  }

  .continuue-for-clg-heading p {
    width: 100%;
    font-size: 14px;
  }
.continue-join-button{
  margin-bottom:10px;
}
  /* Buttons stretch but still same structure */
  .continue-join-button,
  .continue-explore-button {
    width: 100%;
    text-align: center;
    padding: 12px;

  }
}

/* ----------- SMALL MOBILE (max-width: 480px) ----------- */
@media (max-width: 480px) {
  .continuue-for-clg-div {
    padding: 40px 15px;
    gap: 20px;
  }

  .continuue-for-clg-heading h2 {
    font-size: 24px;
  }

  .continuue-for-clg-heading p {
    font-size: 13px;
    line-height: 20px;
  }

  .continue-join-button,
  .continue-explore-button {
    font-size: 14px;
    padding: 10px;
  }
}
