/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #fff;
    width: 90%;
    max-width: 600px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}*/

.header,
.rate-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.rate-section {
  background: url(../img/appimages/Box_05.png) center no-repeat;
  background-size: 100% 100%;
}

.discounted-header {
  background: url(../img/appimages/Box_01.png) center no-repeat;
  background-size: 100% 100%;
  color: white;
  text-align: center;
  padding: 10px;
  /* margin: 10px 0; */
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
}


.rate-box {
  display: flex;
  align-items: center;
  /* background-color: #f5f5f5; */
  padding: 10px 0 10px 10px;
  border-radius: 10px;
  width: 48%;
  /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); */
}

.circle {
  background: url(../img/appimages/Box_04.png) center no-repeat;
  background-size: 100% 100%;
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
}

.rate-info {
  display: flex;
  flex-direction: column;
}

.name {
  font-size: 13px;
  font-weight: 500;
  color: #b99252;
  text-align: left;
}

.value {
  font-size: 16px;
  font-weight: bold;
  margin-top: 5px;
  color: #0d1f1e;
}

.accordion-section {
  max-width: 600px;
  margin: 0 auto;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #f9ca30;
  margin-bottom: 0px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgb(249 202 48);
}

.accordion-header img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.accordion-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.accordion-header svg {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.accordion-header.active svg {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  background-color: #f9ca30;
  padding: 15px;
  /*border-radius: 5px;*/
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.accordion-content p {
  color: #000;
}

.accordion-content.show {
  display: block;
}

.accordion-header svg {
  fill: #FFF;
  /* Default color of the arrow */
  transition: fill 0.3s ease;
  /* Smooth transition */
}

.accordion-header.active svg {
  fill: #FFF;
  /* Change to desired color when active */
}

.accordion-item {
  margin-bottom: 20px;
}

.header-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header,
.rate-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
    background: url(../img/appimages/Box_05.png) center no-repeat;
  background-size: 100% 100%;
  border-radius: 30px;
}