/* Container & Section Layout */
.faq-section {
    padding: 60px 0 80px;
}

.faq-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq-container h2{
    margin-bottom:50px;
    text-align:center;
    line-height:1;
}


/* Heading Style */
.faq-title {
    color: #212529;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 28px;
}

/* Accordion Container */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Individual FAQ Item */
.faq-item {
    padding: 15px 20px;
    background:#fff;
    box-shadow:5px 0 35px rgba(0, 0, 0, 0.15);
    position:relative;
}
.faq-item .faq-question:after {
  content: '';
  position: absolute;
  right: 15px;
  top: 15px;
  background: url(/wp-content/themes/utilimaster/assets/images/red_down_arrow.svg) no-repeat;
    background-size: auto;
  width: 28px;
  height: 28px;
  background-size: 28px;
}
.faq-item .faq-question.active:after {
  background: url(/wp-content/themes/utilimaster/assets/images/red_left_arrow.svg) no-repeat;
    background-size: auto;
  width: 28px;
  height: 28px;
  background-size: 28px;
}

/* Question Heading */
.faq-question {
    color: #212529;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin:0 !important;
    padding-right:20px;
}

/* Answer Paragraph */
.faq-answer {
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    display: none;
    margin-top:10px;
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

