/* About Pages Shared Styles */

.content-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767.98px) {
  .content-wrapper {
    padding: 25px;
  }
}

/* Section Spacing */
.content-section {
  margin-bottom: 40px;
}

.content-section:last-child {
  margin-bottom: 0;
}

/* Highlight Boxes */
.highlight-box {
  background: linear-gradient(
    135deg,
    rgba(3, 75, 159, 0.05) 0%,
    rgba(237, 182, 0, 0.05) 100%
  );
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid #034b9f;
  margin: 30px 0;
}

.highlight-box-alt {
  background: linear-gradient(
    135deg,
    rgba(184, 65, 16, 0.05) 0%,
    rgba(237, 182, 0, 0.05) 100%
  );
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid #b84110;
  margin: 30px 0;
}

@media (max-width: 767.98px) {
  .highlight-box,
  .highlight-box-alt {
    padding: 20px;
  }
}

/* Lists */
.feature-list,
.objective-list {
  list-style: none;
  padding: 0;
}

.feature-list li,
.objective-list li {
  padding: 15px 0 15px 40px;
  position: relative;
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #262626;
  border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child,
.objective-list li:last-child {
  border-bottom: none;
}

.feature-list li::before,
.objective-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 20px;
  height: 20px;
  background: #edb600;
  border-radius: 50%;
}

@media (max-width: 767.98px) {
  .feature-list li,
  .objective-list li {
    font-size: 16px;
    padding: 12px 0 12px 35px;
  }

  .feature-list li::before,
  .objective-list li::before {
    width: 16px;
    height: 16px;
    top: 16px;
  }
}

/* Icons */
.icon-wrapper {
  width: 80px;
  height: 80px;
  background: #034b9f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-wrapper img {
  width: 40px;
  height: 40px;
}

/* Cards */
.info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(3, 75, 159, 0.15);
}

@media (max-width: 767.98px) {
  .info-card {
    padding: 20px;
  }
}

/* Dividers */
.section-divider {
  border: none;
  border-top: 2px solid #034b9f;
  margin: 40px 0;
  opacity: 0.2;
}

/* Image Styles */
.content-image {
  border-radius: 8px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

/* Table Styles (for Organogram if needed) */
.org-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.org-table th,
.org-table td {
  padding: 15px;
  text-align: left;
  border: 1px solid #e0e0e0;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
}

.org-table th {
  background: #034b9f;
  color: #ffffff;
  font-weight: 600;
}

.org-table tbody tr:nth-child(even) {
  background: #f8f9fa;
}

@media (max-width: 767.98px) {
  .org-table {
    font-size: 14px;
  }

  .org-table th,
  .org-table td {
    padding: 10px;
  }
}
