/** {
    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 {
    border-bottom: 1px solid #818181;
}

.discounted-header {
    background-color: #f9ca30;
    color: Black;
    text-align: center;
    padding: 10px;
    margin: 10px 0;
    font-weight: bold;
}

.rate-box {
    display: flex;
    align-items: center;
    /*background-color: #f5f5f5;*/
    padding: 10px 0;
    border-radius: 10px;
    width: 48%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.circle {
    background-color: #f9ca30;
    color: Black;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    margin-right: 10px;
}

.rate-info {
    display: flex;
    flex-direction: column;
}

.name {
    font-size: 14px;
    color: #f9ca30;
}

.value {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
    color: #FFF;
}


/* Accordian Design */
 /*body {
      font-family: Arial, sans-serif;
      background-color: #f9f9f9;
      padding: 20px;
    }*/

    .accordion-section {
      max-width: 600px;
      margin: 0 auto;
    }

    .accordion-header {
      display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        /* background-color: white; */
        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;
    }
