/* Center and style tip box section */
.cpg-flex-box {
  display: flex;
  justify-content: center;
  padding-top: 1%;
}
.cpg-tip-container {
  display: flex;
  justify-content: start;
  width: 85%;
}
.cpg-tip-box {
  display: flex;
  background-color: white;
  padding: 22px;
  border-radius: 10px;
  color: rgba(0, 0, 0, 0.5);
  font-family: "Open Sans", sans-serif;
}
.cpg-light-box img {
  height: 50px;
}
.cpg-light-box {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

/* Heading and subtitle styling */
.cpg-heading {
  display: flex;
  justify-content: center;
  font-size: 24pt;
  color: #025951;
  font-family: "Agrandir", sans-serif;
}
.cpg-line-dot {
  position: relative;
  width: 90%;
  max-width: 610px;
  height: 2px;
  background-color: #ffc73c;
  margin: 0 auto;
}
.cpg-dot {
  width: 15px;
  height: 15px;
  background-color: #ffc73c;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
.cpg-subtitle {
  display: flex;
  justify-content: center;
  font-size: 11pt;
  color: #025951;
  font-family: "Poppins", sans-serif;
  margin: 1% auto 5%;
  text-align: center;
}
.choose-a-plan-page {
  background-color: #f8f6f1;
}

/* Flex and box styling for plan selection section */
.cpg-row-container {
  display: flex;
  justify-content: center;
  padding-bottom: 5%;
}
.cpg-row {
  background: #f8f6f1;
  width: 85%;
}
.cpg-box-container {
  min-width: 23%;
  aspect-ratio: 1/1.05;
  margin: 5px;
  border-radius: 14px;
}
.cpg-box-upper {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.cpg-box-heading {
  color: #f8f6f1;
  font-family: "Agrandir", sans-serif;
  font-size: 16.6pt;
  font-weight: bold;
  line-height: 20px;
}
.cpg-box-lower {
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Style buttons and hover effects */
.cpg-box-button button {
  color: white;
  font-size: 11pt;
  padding: 6pt;
  width: 36%;
  min-width: 100px;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  transition: transform 0.3s ease;
}
.cpg-box-button button:hover {
  transform: scale(1.2);
}

/* Individual box color themes */
.cpg-box1 {
  background-color: #4684a1;
}
.cpg-box1 button {
  background-color: #ffc73c;
  border: none;
}
.cpg-box2 {
  background-color: #7ac3d1;
}
.cpg-box2 button {
  background-color: #00396c;
  color: white;
  border: none;
}
.cpg-box3 {
  background-color: #213f5e;
}
.cpg-box3 button {
  background-color: #025951;
  color: white;
  border: none;
}
.cpg-box4 {
  background-color: #afd4cb;
}
.cpg-box4 button {
  background-color: #00396c;
  color: white;
  border: none;
}
.cpg-box5 {
  background-color: #4b7eaf;
}
.cpg-box5 button {
  background-color: #00396c;
  color: white;
  border: none;
}
.cpg-box6 {
  background-color: #2197bd;
}
.cpg-box6 button {
  background-color: #025951;
  color: white;
  border: none;
}
.cpg-box7 {
  background-color: #5bc1e6;
}
.cpg-box7 button {
  background-color: #00396c;
  color: white;
  border: none;
}
.cpg-box8 {
  background-color: #08475b;
}
.cpg-box8 button {
  background-color: #ffc73c;
  color: white;
  border: none;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1024px) {
  .cpg-box-container {
    min-width: 46%;
  }
}
@media (max-width: 600px) {
  .cpg-box-container {
    min-width: 30%;
    margin: 0;
    margin-top: 10px;
  }
  .cpg-tip-container {
    justify-content: center;
  }
  .cpg-subtitle {
    margin-top: 2%;
  }
}
