/* Reset */
* {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
}

:root {
  --fhsection2-bg: #4b1852;
  --fhsection2-text: #fff;
  --fhsection2-subtext: #ccc;
  --fhsection2-highlight: #11205e;
  --fhsection2-font: 'Arial', sans-serif;
  --fhsection2-gap: 20px;
}

.fhsection2-section {
    background-color: #9e1c5f9f;

  color: var(--fhsection2-text);
  padding: 30px 20px;
  text-align: center;
}

.fhsection2-icon {
  font-size: 38px;
  color: #d4af37; 
  margin-bottom: 15px;
}


.fhsection2-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  gap: var(--fhsection2-gap);
}

.fhsection2-feature {
  flex: 1 1 calc(25% - 20px);
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.fhsection2-feature:last-child {
  border-right: none;
}

.fhsection2-feature h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.fhsection2-feature p {
  font-size: 0.95rem;
  color: var(--fhsection2-subtext);
}
@media (max-width: 942px) {
.fhsection2-feature h3 {
  font-size: 0.98rem;
}
.fhsection2-icon {
  font-size: 32px;
}
.fhsection2-feature p {
  font-size: 0.68rem;
}
.fhsection2-section {
  padding: 10px 20px;
}
}
/* Responsive */
@media (max-width: 742px) {
  .fhsection2-feature {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .fhsection2-feature:nth-child(2n) {
    border-right: none;
  }
  .fhsection2-section {
  padding: 0px 20px;
}
}

@media (max-width: 576px) {
  .fhsection2-feature {
    flex: 1 1 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
