.faq_onecol_icon {
  padding: 60px 0;
}
.faq_icon_container {
      max-width: 1328px;
    padding: 0 24px;
  margin: 0 auto;
  text-align: center;
}
.faq_icon_container h2 {
    color: #191530;
    font-family: Faktum Test;
    font-weight: 700;
    font-style: Bold;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -2%;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 20px;
}
.faq_icon_container h6 {
  padding-bottom: 20px;
}
.faq_icon_container>p {
    color: #191530;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -2%;
    text-align: center;
    width:85%;
    margin: 0 auto;
    padding-bottom: 25px;
}

/* Accordion item */
.faq_item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq_item:hover {
  border-color: rgba(255, 54, 148, 0.5);
  box-shadow: 0 4px 7px rgba(255, 54, 148, 0.25);
  transform: translateY(-8px);
}
.faq_item:hover .icon_text h3,
.faq_item:hover .icon_text p {
  transform: translateY(-4px);
}

/* Header */
.faq_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
}

/* Left section */
.icon_left img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Text */
.icon_text {
  flex: 1;  
  text-align: left;
  margin-left: 12px;
}

.icon_text h3,
.icon_text p {
  transition: transform 0.3s ease;
}

.icon_text h3 {
    margin: 0;
    font-family:'Faktum Test' !important;
    font-weight: 600;
    font-size: 18px;
    color: #191530;
    line-height: 29px;
    letter-spacing: -2%;
}
.icon_text p {
    color: #191530;
    margin: 0;
    font-family: Inter;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -2%;
}

.faq_title:after {
    background-image: url(https://146759849.fs1.hubspotusercontent-eu1.net/hubfs/146759849/Group%204-1.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 25px;
    transition: transform .3s ease;
    width: 35px;
}

/* Rotate arrow when active */
.faq_item.active .faq_title::after {
  transform: rotate(180deg);
}


.faq_desp {
  display: none;
  padding: 20px;
  border-top: 1px solid #f1f1f1;
  text-align: left;
}
.faq_desp p {
    color: #191530;
    margin-bottom: 16px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -2%;
    width: 100%;
}

.faq_desp_twocol h4 {
    color: #191530;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: -2%;
    margin: 0;
    padding-bottom: 10px;
}
.faq_desp_twocol {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.faq_leftdesp,
.faq_rightdesp {
  flex: 1;
  min-width: 250px;
  font-size: 16px;
  color: #191530;
}


.faq_item.active {

  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.faq_item.active .faq_desp {
  display: block;
}

/* Remove default bullets from both columns */
.faq_leftdesp ul,
.faq_rightdesp ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Base li style for both columns */
.faq_leftdesp ul li,
.faq_rightdesp ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

/* Pink "✕" for left column (pain points) */
.faq_leftdesp ul li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #ff3694;
  font-weight: 700;
  font-size: 11px;
  top: 5px;
}

/* "✓" for right column (deliverables) */
.faq_rightdesp ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff3694;
  font-weight: 700;
  font-size: 11px;
  top: 5px;
}

/* Ipad */
@media (min-width: 768px) and (max-width: 991px) {
.faq_icon_container h2, .faq_icon_container>p {
    width: 100%;
}
}

/* Mobile Devices... */
@media screen and (max-width: 767px) {
.faq_icon_container {
    padding: 0 24px !important;
}
  .faq_icon_container h2{
    width: 100%;
    font-size: 30px !important;
  }
  .faq_icon_container>p {
    width: 100%;
}
  @media screen and (max-width: 767px) {
    .four-col_top h2 {
        font-size: 30px !important;
        line-height: 34px;
        padding-bottom: 10px;
}