

.info-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  background-color: #fafafa;
}

/* 👇 Column layout */
.info-section.column {
  flex-direction: column;
  gap: 30px;
}

.info-box {
  text-align: center;
  padding: 25px 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 0 1px #eee;
  transition: all 0.3s ease;
  width: 300px;
}

.info-box img {
  width: 60px;
  margin-bottom: 15px;
}

.info-box h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.info-box .underline {
  width: 60px;
  height: 2px;
  background-color: #2C388E;
  margin: 0 auto;
}

.info-box.active {
  border: 1px solid #2C388E;
  box-shadow: 0 0 10px rgba(233, 78, 27, 0.1);
}

.info-box:hover {
  border: 1px solid #2C388E;
  box-shadow: 0 0 10px rgba(233, 78, 27, 0.15);
}

.info-box:hover .underline {
  background-color: #2C388E;
}


.contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-links .theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.pricing-icon img {
    width: 80px;
    height: auto;
    /* margin-left: 20px; */
}


/* Optional: center the buttons on small screens */
@media (max-width: 768px) {
  .contact-links {
    align-items: center;
  }
}


/* CONTACT */


  .contact-list i {
    color: #fff;
  }




    .ombudsman-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px; /* matches your screenshot */
  max-width: 100%;
  font-family: "Poppins", sans-serif;
}

.ombudsman-title {
  background-color: #2C388E; /* red header */
  color: #fff;
  text-align: center;
  padding: 14px 10px;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.ombudsman-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ombudsman-list li {
  padding: 12px 18px;
  border-bottom: 1px solid #f5f5f5;
  color: #222;
  font-size: 15px;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.ombudsman-list li.active {
  color: #2C388E;
  font-weight: 600;
  border-bottom: 2px solid #2C388E;
}

.ombudsman-list li:not(.active):nth-child(n+3) {
  border-bottom: 1px solid #2C388E; /* yellow line */
}

.ombudsman-list li:hover {
  background: #f9f9f9;
  cursor: pointer;
}


.ombudsman-table-wrapper {
  overflow-x: auto;
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ombudsman-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.ombudsman-table th {
  background-color: #f3f3f3;
  color: #333;
  font-weight: 600;
  padding: 10px;
  text-align: left;
  border: 1px solid #ccc;
}

.ombudsman-table td {
  border: 1px solid #ccc;
  padding: 10px;
  vertical-align: top;
}

.ombudsman-table a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.ombudsman-table a:hover {
  text-decoration: underline;
}

.ombudsman-list a:hover {
  color: #2C388E; /* red hover color */
  text-decoration: underline;
}