.categories__pills--container {
   width: 100%;
   padding: 15px 0;
   overflow-x: auto; 
   white-space: nowrap;
   -webkit-overflow-scrolling: touch;
   }
   .categories__pills--container::-webkit-scrollbar {
   display: none;
   }
   .categories__pills--list {
   display: flex;
   align-items: center;
   gap: 12px; 
   list-style: none;
   padding: 0;
   margin: 0;
   }
   .categories__pill--link {
   display: flex;
   align-items: center;
   padding: 8px 20px;
   background-color: #f2f2f2;
   color: #333;
   text-decoration: none;
   border-radius: 50px;    
   font-size: 14px;
   font-weight: 500;
   transition: all 0.3s ease;
   border: 1px solid transparent;
   }
   .categories__pill--link:hover, 
   .categories__pill--link.active {
   background-color: #007bff;
   color: #ffffff;
   }
   .pill__icon {
   width: 18px;
   height: 18px;
   margin-right: 8px;
   object-fit: contain;
   }
   @media (max-width: 768px) {
   .categories__pill--link {
   padding: 6px 15px;
   font-size: 13px;
   }
   }

   .privacy-policy__section {
    background: linear-gradient(120deg, #f4f7fa 0%, #e9eafc 100%);
    padding: 60px 0 60px 0;
}
.privacy-policy__content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.08);
    padding: 48px 36px 40px 36px;
    position: relative;
    z-index: 2;
}
.privacy-policy__title {
    font-weight: 700;
    color: #4315a1;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-align: center;
}
.privacy-policy__details .contact-info {
    background-color: #f9f9f9;
    border-left: 4px solid #8e44ad;
    padding: 15px 20px;
    margin-bottom: 2.5rem;
    border-radius: 0 8px 8px 0;
}
.privacy-policy__details .contact-info p {
    margin-bottom: 0.5rem;
}
.privacy-policy__details .contact-info p:last-child {
    margin-bottom: 0;
}
.privacy-policy__details h3 {
    color: #8e44ad;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.7rem;
}
.privacy-policy__details p, .privacy-policy__details ul {
    color: #444;
    margin-bottom: 1.1rem;
    line-height: 1.7;
}
.privacy-policy__details ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.privacy-policy__details ul li {
    margin-bottom: 0.5rem;
    list-style: disc;
}
.privacy-policy__details a {
    color: #4315a1;
    text-decoration: underline;
}
.privacy-policy__details a:hover {
    color: #8e44ad;
}
@media (max-width: 600px) {
    .privacy-policy__content {
        padding: 22px 15px 18px 15px;
    }
}
/* Reusing the exact same styles, just renamed classes to refund-policy for clarity */
.refund-policy__section {
    background: linear-gradient(120deg, #f4f7fa 0%, #e9eafc 100%);
    padding: 60px 0 60px 0;
}
.refund-policy__content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.08);
    padding: 48px 36px 40px 36px;
    position: relative;
    z-index: 2;
}
.refund-policy__title {
    font-weight: 700;
    color: #4315a1;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-align: center;
}
.refund-policy__details .contact-info {
    background-color: #f9f9f9;
    border-left: 4px solid #8e44ad;
    padding: 15px 20px;
    margin-bottom: 2.5rem;
    border-radius: 0 8px 8px 0;
}
.refund-policy__details .contact-info p {
    margin-bottom: 0.5rem;
}
.refund-policy__details .contact-info p:last-child {
    margin-bottom: 0;
}
.refund-policy__details h3 {
    color: #8e44ad;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.7rem;
}
.refund-policy__details p {
    color: #444;
    margin-bottom: 1.1rem;
    line-height: 1.7;
}
.refund-policy__details a {
    color: #4315a1;
    text-decoration: underline;
}
.refund-policy__details a:hover {
    color: #8e44ad;
}
@media (max-width: 600px) {
    .refund-policy__content {
        padding: 22px 15px 18px 15px;
    }
}
.faq__section {
    background: linear-gradient(120deg, #f4f7fa 0%, #e9eafc 100%);
    padding: 60px 0 60px 0;
}
.faq__title {
    /* font-size: 2.5rem; */
    font-weight: 700;
    color: #4315a1;
    margin-bottom: 2.5rem;
    text-align: center;
}
.faq__accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq__item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 18px;
    box-shadow: 0 2px 10px rgba(67,21,161,0.06);
    overflow: hidden;
    border: 1px solid #ececec;
    transition: box-shadow 0.2s;
}
.faq__question {
    cursor: pointer;
    padding: 1.2rem 1.5rem;
    /* font-size: 1.15rem; */
    font-weight: 600;
    color: #4315a1;
    background: #f7f6fd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}
.faq__question:hover {
    background: #ece9fa;
}
.faq__icon {
    /* font-size: 1.2rem; */
    transition: transform 0.2s;
}
.faq__item.active .faq__icon {
    transform: rotate(90deg);
}
.faq__answer {
    padding: 1.1rem 1.5rem 1.3rem 1.5rem;
    /* font-size: 1.05rem; */
    color: #444;
    border-top: 1px solid #ececec;
    display: none;
    background: #fff;
}
.faq__item.active .faq__answer {
    display: block;
    animation: fadeInFaq 0.3s;
}
@keyframes fadeInFaq {
    from { opacity: 0; transform: translateY(-10px);}
    to { opacity: 1; transform: translateY(0);}
}
@media (max-width: 600px) {
    
    .faq__accordion { padding: 0 5px; }
    .faq__question, .faq__answer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
