.sectionA {
  background-color: #16171b;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  padding-bottom: 250PX;
  padding-top: 30px;
  padding-left: 15%;
  padding-right: 15%;
}

.promotion-points-style {
  gap: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 per row */
  justify-content: center;
}

.promotion-points-button {
  box-sizing: border-box;
  padding: 13px 28px;
  font-size: 20px;
  font-family: "Quantico", sans-serif;
}

.promotion-points-button:hover {
  color: #ffffff;
  background-color: #3d6d4c;
  /* darker on hover */
  border-color: #5C946E;
  /* subtle contrast */
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
  /* slight lift effect */

}

















.trend-style {
  gap: 40px;


  justify-content: center;
}

.trend-button {
  box-sizing: border-box;
  padding: 15px 30px;
  font-size: 25px;
  font-family: "Quantico", sans-serif;
}

.trend-button:hover {
  color: #ffffff;
  background-color: #3d6d4c;
  /* darker on hover */
  border-color: #5C946E;
  /* subtle contrast */
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
  /* slight lift effect */

}

.sectionB {

  background-color: #16171b;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 0px 45px 0px 45px;
  overflow-x: hidden;
  padding-bottom: 250PX;
}








.sectionD {
  padding: 0px 45px 0px 45px;
  text-align: left;
  margin: 0 auto;
  max-width: 900px;
}



.sectionD h3 {
  font-family: "Quantico", sans-serif;
  color: #ffffff;
  font-size: 28PX;
  padding: 0;
    text-align: left;
  margin: 30px 0px 0px 0px;

}

.sectionD h4 {
  font-family: "Quantico", sans-serif;
  color: #ffffff;

  padding: 10px 0px 30px 0px;
  margin: 0;
  font-size: 23PX;

}


.points-table {
  font-family: "Quantico", sans-serif;
  width: 100%;


  max-width: 700px;

  border-collapse: collapse;
  background: white;
  margin-bottom: 70px;
  font-size: 13px;
}



.points-table th,
.points-table td {
  border: 1px solid #000;
  padding: 3px;
  text-align: center;
}

.points-table thead {
  background-color: #d9d9d9;
  font-weight: bold;
}

.points-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}


.pro-tip {

  border-left: 4px solid #5C946E;
  padding: 16px 20px;
  background-color: #1dff6505;
  color: #cfd3dc;
  font-size: 14px;



  max-width: 700px;
  margin: 0 auto;
  /* centers the section itself */

  margin-bottom: 50PX;
  align-items: center;
  /* centers horizontally */

  overflow-x: hidden;

  font-family: "Quantico", sans-serif;
}

.pro-tip strong {
  color: #5C946E;
  font-weight: 600;
}



















/* Phone */
@media (max-width: 480px) {

/* sectionA */
.promotion-points-style {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 4 per row */
  justify-content: center;
}

.promotion-points-button {
  box-sizing: border-box;
  white-space: nowrap;
  padding: 5px 14px;
  font-size: 10px;
  font-family: "Quantico", sans-serif;
}

/* sectionB */
.trend-button {
  box-sizing: border-box;
  padding: 8px 20px;
  font-size: 15px;
  font-family: "Quantico", sans-serif;
}

/* sectionD */
.sectionD {
  padding: 0px 15px 0px 15px;
  text-align: left;
  margin: 0 auto;
  max-width: 900px;
}

.sectionD h2 {
  font-size: 25px;
  text-align: start;
  padding-bottom: 40px;
}


.sectionD h3 {
  font-family: "Quantico", sans-serif;
  color: #ffffff;
  font-size: 20PX;
  padding: 0;
  margin: 0;
  text-align: start;

}


.sectionD h4 {
  font-family: "Quantico", sans-serif;
  color: #ffffff;

  padding: 20px 0px 30px 0px;
  margin: 0;
  font-size: 15PX;

}


.points-table {
  font-family: "Quantico", sans-serif;
  width: 100%;
  max-width: 700px;
  border-collapse: collapse;
  background: white;
  margin-bottom: 70px;
  font-size: 8px;
}



.points-table th,
.points-table td {
  border: 1px solid #000;
  padding: 4px 3px 4px 3px;
  text-align: center;
}

.points-table thead {
  background-color: #d9d9d9;
  font-weight: bold;
}

.points-table tbody tr:nth-child(even) {
  background-color: #f2f2f2;
}







}