.cosmetic-section .inner_row h2 {
    font-size: 35px;
}
.cosmetic-section .inner_row ul li {
    list-style: disc;
}  

/*--------------FAQ------------*/

.cosmetic-section h2 {
	font-size: 24px;
    color: #000;
    margin-bottom: 15px;

}

 .faq-container {
      margin-top: 30px;
	  border-top: 1px solid;
    padding-top: 25px;
    }

    .faq-item {
      border-bottom: 1px solid #ddd;
    }

    .faq-question {
      background: #f0f0f0;
      cursor: pointer;
      padding: 15px;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .faq-answer {
      display: none;
      padding: 15px;
      background: #fff;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .faq-item.active .faq-question {
      background-color: #e0f7ff;
    }