/* Main widget container */
.custom-feature-widget {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

/* Icon styles */
.custom-widget-icon {
  min-width: 64px;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  background-color: rgba(255, 130, 4, 0.1);
  margin-right: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.3s;
}
.custom-widget-icon:hover {
  background-color: rgba(255, 130, 4, 0.2);
  transform: scale(1.05);
}
.custom-widget-icon img {
  width: 64px;
  height: 64px;
  transition: transform 0.3s ease;
}
.custom-widget-icon img:hover {
  transform: scale(1.1);
}

/* Main section title styles */
h2.custom-title {
  margin-bottom: 0.5rem;
}
.custom-title .title-prefix {
  color: #ff8204;
}
.custom-title .title-suffix {
  color: #00568c;
}
.custom-title span {
  font-size: inherit !important;
  line-height: inherit !important;
}

/* Orange separator line */
.custom-separator {
  width: 300px;
  height: 2px;
  background-color: #ff8204;
  margin: 1.5rem auto;
}

/* Text content styles */
.custom-widget-text {
  flex: 1;
}
.custom-widget-text h5 {
  color: #ff8204;
  margin: 0 0 3px;
  font-weight: bold;
}
.custom-widget-text h5 .title-prefix {
  color: #00568c;
}
.custom-widget-text p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}
/* Styles for links within the feature content */
.custom-widget-text a {
  text-decoration: underline;
  color: inherit;
}
