/* Worxogo Behaviour Science Widget Styles */

.feautre-solid-wrapper {
  display: flex;
  flex-direction: column;
  gap: 52px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}

.feature-solid-content {
  display: flex;
  flex-direction: row;
  gap: 52px;
  align-items: center;
}

.feature-solid-image {
  position: relative;
}

.feature-solid-image .feature-image {
  width: 100%;
  max-width: 515px;
  height: auto;
  object-fit: cover;
  display: block;
  align-self: center;
}

/* Responsive Images */
.feature-solid-image .desktop-image {
  display: block;
}

.feature-solid-image .tablet-image,
.feature-solid-image .mobile-image {
  display: none;
}

.feature-item {
  border-bottom: 1px solid #ccccca;
  padding-bottom: 20px;
  gap: 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.accordion-item-title {
  font-size: 24px !important;
}
.feature-header {
  display: flex;
  align-items: center;
  padding: 0;
}

.feature-icon {
  margin-right: 15px;
  width: 40px;
  height: 40px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-title {
  font-family: "Albert Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #290074;
  margin: 0;
}

.feature-content {
  padding-left: 75px;
  display: block;
}

.feature-content p {
  color: #616160;
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.feature-solid-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
}

.feature-solid-title h2 {
  color: #290074;
  text-align: center;
  font-family: "Albert Sans", sans-serif;
  font-size: 40px;
  line-height: 120%;
  font-weight: 700;
  margin: 0;
}

.feature-solid-title h2 span {
  color: #4000a9;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  /* Show tablet image on tablet devices */
  .feature-solid-image .desktop-image {
    display: none;
  }

  .feature-solid-image .tablet-image {
    display: block;
  }
}

@media (max-width: 768px) {
  .feature-solid-content {
    flex-direction: column;
    gap: 40px;
  }

  .feature-solid-title h2 {
    font-size: 32px;
  }

  .feature-title {
    font-size: 20px;
  }

  .feature-content p {
    font-size: 14px;
  }

  .feature-solid-image .feature-image {
    max-width: 100%;
  }

  /* Show mobile image on mobile devices */
  .feature-solid-image .tablet-image {
    display: none;
  }

  .feature-solid-image .mobile-image {
    display: block;
  }
}

@media (max-width: 576px) {
  .feautre-solid-wrapper {
    gap: 30px;
  }

  .feature-solid-content {
    gap: 30px;
  }

  .feature-solid-title h2 {
    font-size: 28px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-content p {
    font-size: 14px;
  }

  .feature-icon {
    width: 30px;
    height: 30px;
  }

  .feature-content {
    padding-left: 50px;
  }
}

/* Order classes for image positioning */
.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}
