/* body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #FFFFEC;

 
  justify-content: center;
  align-items: center;
}

.policies-box {
  background-color: #f9c51c;
  border-radius: 30px;
  padding: 30px 40px;
  width: 90%;
  margin-top: 50px;
  max-width: 1195px;
  margin-left: 165px;
}

.policies-box h2 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
}

.policy-list {
  list-style: decimal;
  padding-left: 20px;
  font-size: 18px;
  font-weight: bold;
}

.policy-list li {
  margin-bottom: 15px;
}

.details1 {
  background-color: #000066;
  border-radius: 30px;
  color: white;
  padding: 20px;
  transition: all 0.3s ease;
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.arrow1 {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid white;
  transition: transform 0.3s ease;
}

.details1[open] .arrow1 {
  transform: rotate(180deg);
}

.policy-detail {
  background-color: #000066;
  color: white;
  font-weight: normal;
  padding-top: 15px;
  font-size: 16px;
}

.policy-detail ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.policy-detail li {
  margin-bottom: 8px;
} */
 body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #FFFFEC;
  justify-content: center;
  align-items: center;
}

.policies-box {
  background-color: #f9c51c;
  border-radius: 30px;
  padding: 40px;
  width: 90%;
  margin-top: 50px;
  max-width: 1195px;
  margin-left: auto;
  margin-right: auto;
}

.policies-box h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #000066;
  margin-bottom: 35px;
}

.policy-list {
  list-style: none;
  
}

.policy-list li {
  margin-bottom: 25px;
}

.details1 {
  background-color: #000066;
  border-radius: 30px;
  color: white;
  padding: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: left;
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  list-style: none;
  padding: 20px 30px;
  font-weight: bold;
  background-color: #000066;
}

summary::-webkit-details-marker {
  display: none;
}

.arrow1 {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid white;
  transition: transform 0.3s ease;
}

.details1[open] .arrow1 {
  transform: rotate(180deg);
}

.policy-detail {
  background-color: #000066;
  color: white;
  font-weight: normal;
  padding: 20px 30px;
  font-size: 16px;
  text-align: left;
}

.policy-detail p {
  margin-bottom: 10px;
}

.policy-detail strong {
  font-weight: bold;
}

.policy-detail ul {
  padding-left: 20px;
  margin-bottom: 15px;
  margin-top: 5px;
}

.policy-detail li {
  margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .policies-box {
    padding: 25px;
  }

  summary {
    font-size: 16px;
    padding: 15px 20px;
  }

  .policy-detail {
    font-size: 15px;
    padding: 18px 20px;
  }
}
