* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  /* cursor: pointer; */
}
body{
    background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh;
}
.policesHeader{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    margin-top: 3rem;
    h1{
        font-weight: 900;
        font-size: 3rem;
    }
    h3{
        font-size: 1.1rem;
        font-weight: 400;
        line-height: 3.5rem;
    }
}
.policiesList{
    margin-top: 2rem;
    width: 70%;
    height: 6rem;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem  auto 0;
    border-radius: 1rem;
}
.policiesList ul{
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.policiesList ul{
    /* display: flex; */
    gap: 1rem;
    list-style: none;
}
.policiesList button{
    height: 3.9rem;
    width: 8rem;
    border-radius: 0.5rem;
    border: none;
    background-image: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}
.policiesList .active{
    background-image: linear-gradient(135deg, #059669, #0d9488);
}
.backButton{
    width: 6rem;
    height: 3rem;
    background-color: rgba(10, 81, 233, 0.541);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}
.container{
    width: 70%;
    /* height: 100vh; */
    background-color: white;
    margin: 2rem  auto 0;
    padding : 2rem;
    border-radius: 1rem;
}
.contactUs{
    display: none;
}

/* start contact us page  */
.mainHeader{
    display: flex;
    justify-content: center;
    margin-bottom: 1.4rem;
    font-size: 1.3rem;
}
.info{
    background-image: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    padding: 2rem;
    border-radius: 1rem;
}
.info i{
    color: #4f46e5;
    margin-top: 5px
}
.info div{
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
/* end contact us page  */
/* start of t and c Policy */
.tAndC{
    display: none;
}
.tAndC h3{
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}
.tAndC li{
    list-style: none;
    padding-bottom: 0.6rem;
    padding-left: 2rem;
    font-size: 1.05rem;
}
/* start privacy and policy  */
.privacyPolicy{
    display: none;
}
.privacyPolicy h3{
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}
.privacyPolicy li{
    list-style: none;
    padding-bottom: 0.6rem;
    padding-left: 2rem;
    font-size: 1.05rem;
}

/* start of Refund & Cancellation Policy  */
.refundAndCancellation{
    display: none;
}
.refundAndCancellation h3{
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}
.refundAndCancellation li{
    list-style: none;
    padding-bottom: 0.6rem;
    padding-left: 2rem;
    font-size: 1.05rem;
}
.container .active{
    display: block;
}
@media (max-width:818px){
    .policiesList{
        height: 8rem;
    }
    .policiesList button{
        height: 3rem;
        /* width: 7rem; */
        font-size: 12px;
    }
    .policiesList ul{
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width:583px){
    .container{
        width: 90%;
    }
    .policiesList{
        height: 12rem;
    }
    .policiesList button{
        height: 2rem;
        width: 15rem;
        font-size: 12px;
    }
    .policiesList ul{
        grid-template-columns: repeat(1,1fr);
    }
}
@media (max-width:450px){
    .info p{
        font-size: 15px;
    }
}
@media (max-width:391px){
    .policesHeader h1{
        font-size: 2.2rem;
    }
    .policesHeader h3{
        font-size: 15px;
    }
}
@media (max-width:374px){
    .policiesList{
        width: 90%;
    }
    .info p{
        font-size: 12px;
        padding-top: 5px;
    }
    
}
@media (max-width:368px){
    .info p{
        font-size: 13px;
    }
}
@media (max-width:339px){
    .container{
        padding: 20px;
    }
    .info p{
        font-size: 13px;
    }
}
@media (max-width:308px){
    .policesHeader h1{
        font-size: 1.7rem;
    }
    .policesHeader h3{
        font-size: 13px;
    }
    .info p{
        font-size: 12px;
    }
}
@media (max-width:298px){
    .container{
        padding: 12px;
    }
    .info p{
        font-size: 11px;
    }
}