/* Main widget container */
.feature-widget {
  position: relative;
  text-align: center;
  padding: 70px 20px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 300px;
  margin-bottom: 30px;
}

/* Circular image above the widget */
.widget-image {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255, 130, 4, 0.5);
  background: #fff;
  transition: transform 0.3s ease;
}
.widget-image:hover {
  transform: translateX(-50%) scale(1.1);
}

/* Main section title styles */
h2.custom-title {
  margin-bottom: 1rem;
}
.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 */
.separator {
  width: 300px;
  height: 2px;
  background: #ff8204;
  margin: 20px auto;
}

/* Individual widget text styling */
.feature-widget h5 {
  color: #ff8204;
  font-size: 1.125rem;
  font-weight: 600;
}
.feature-widget h5 span {
  color: #00568c;
}
.feature-widget p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0.5em;
  flex-grow: 1;
}
.feature-widget p a {
  text-decoration: underline;
  color: inherit;
}
