.sec-main-wrap {
    padding: 50px 20px;
}

.pg-container {
  max-width: 650px;
  margin: auto;
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Password Display Box */
.pg-container .password-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 26px;
  font-weight: 600;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 30px;
  background: linear-gradient(
92deg, #0f256e, #ddeb9d);
  color: #fff;
  box-shadow: 0 6px 20px rgba(15, 37, 110, 0.4);
}

.pg-container .password-actions button {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border: none;
  padding: 10px 14px;
  margin-left: 8px;
  cursor: pointer;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.25s ease;
}

.pg-container .password-actions button img{
  width: 25px;
}

.pg-container .password-actions button:hover {
  background: rgba(255, 255, 255, 0.4);
  /* transform: scale(1.05); */
}

.pg-container .section-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #0f256e;
}

/* Input fields */
.pg-container .slider-container {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}

.pg-container input[type="number"] {
  width: 80px;
  padding: 8px;
  font-size: 16px;
  border: 2px solid #0f256e;
  border-radius: 8px;
  text-align: center;
  outline: none;
  transition: 0.3s;
}
.pg-container input[type="number"]:focus {
  border-color: #ddeb9d;
  box-shadow: 0 0 6px #ddeb9d;
}

/* Custom slider */
.pg-container input[type="range"] {
  flex: 1;
  appearance: none;
  height: 8px;
  border-radius: 5px;
  background: #eee;
  outline: none;
  cursor: pointer;
}
.pg-container input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0f256e;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: 0.2s;
}
.pg-container input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* Custom checkboxes */
.pg-container .options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}
.pg-container label {
  display: flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  gap: 10px;
}
.pg-container input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #0f256e;
  border-radius: 6px;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}
.pg-container input[type="checkbox"]:checked {
  background: #0f256e;
  border-color: #0f256e;
}
.pg-container input[type="checkbox"]:checked::after {
  content: "✔";
  position: absolute;
  color: #fff;
  font-size: 14px;
  top: -2px;
  left: 3px;
}

.pg-container .footer-note {
  margin-top: 30px;
  font-size: 14px;
  color: #555;
  text-align: center;
}


.content-box {
    border: 1px solid #ddd;
    padding: 40px 30px;
    background: #fff;
    /* margin-top: 50px; */
    border-radius: 16px;
    /* width: 850px;
    max-width: 100%; */
}

.content-box .hdng {
    font-size: 28px;
    margin-bottom: 10px;
    color: #0f256e;
}

.content-box .cntnt,
.content-box li {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

.content-box ul{
    padding-left: 0px;
    margin-top: 10px;
    list-style: none;
}

.content-box .subHdng {
    margin-top: 25px;
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f256e;
}
