.introduction-section > .introduction-container {
  background-color: #005B99;
  padding: 40px 64px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.introduction-section > .introduction-container > .intro-title {
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0%;
}

.introduction-section > .introduction-container > .intro-description-with-image > .intro-description > * {
  color: #fff !important;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: justify;
}

.introduction-section > .introduction-container > .intro-description-with-image > .intro-image {
  float: right;
  width: 520px;
  object-fit: contain;
  margin: 20px 0 0 24px;
}

.links-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  padding: 50px 0;
}

.links-container > .link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  border: 1px solid #005B99;
  border-radius: 16px;
  text-decoration: none;
  min-height: 200px;
  transition: box-shadow 0.2s ease;
}

.links-container > .link:hover {
  box-shadow: inset 0 0 0 2px #0066cc;
}

.links-container > .link > .link-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.links-container > .link > .link-text {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0%;
  text-align: center;
  color: #005B99;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
}

.key-roles-container {
  background-color: #E1F3F8;
  padding: 50px 0;
}

.key-roles-title strong {
  display: flex;
  align-items: center;
  font-family: var(--heading-font);
}

.key-roles-title strong::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../../images/star.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;
  flex-shrink: 0;
}

.key-roles-title::after {
  content: "";
  display: block;
  padding-block-start: 4px;
  padding-block-end: 14px;
  border-block-start: 4px solid #41b6e6;
  width: 24px;
  margin-top: 8px;
}

/* --- Custom Accordion Styles START --- */

.custom-accordion {
  width: 100%;
  margin: 1rem auto;
  border: none;
}

.accordion-item {
  border: none;
  margin-bottom: 20px;
}

/* Hide the default checkbox */
.accordion-toggle {
  display: none;
}

/* Style the title/label to be clickable */
.accordion-title {
  display: flex;
  padding: 15px 20px;
  background-color: #F5F7FA;
  color: #4D4D4D;
  font-weight: bold;
  transition: background-color 0.3s ease;
  position: relative; /* For the icon */
  padding-right: 70px; /* Space for the icon */
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  min-height: 100px;
}

.accordion-toggle-item {
  cursor: pointer;
}

.accordion-toggle-item:hover {
  background-color: #DCE4EF;
}

/* The content panel that shows/hides */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  overflow-y: auto;
  padding: 0 2rem;
  background-color: #F5F7FA;
  color: #4D4D4D;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-content ul {
  margin-left: 0;
}

/* When the checkbox is checked, expand the content */
.accordion-toggle:checked ~ .accordion-content {
  max-height: 100vh;
  padding: 1rem 2rem;
}

.accordion-title-and-icon-container {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

/* Create the chevron icon using an embedded SVG */
.accordion-toggle-item::after {
  content: "";
  position: absolute;
  right: 20px; /* Position from the right edge */
  top: 50%; /* Center vertically */

  /* The SVG icon itself */
  width: 28px;
  height: 28px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2341B6E6" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  /* Initial state (pointing right) and animation */
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}

/* When the accordion is open, rotate the chevron */
.accordion-toggle:checked ~ .accordion-title::after {
  transform: translateY(-50%) rotate(90deg); /* Rotate 90 degrees to point down */
}

.accordion-title-icon {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

/* --- Custom Accordion Styles END --- */

.dc-pages-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 50px 0;
}

.dc-pages-container .dc-pages-title strong {
  display: flex;
  justify-content: center;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 32px;
}

.dc-pages-container .dc-page-links-container {
  width: 100%;
}

.dc-pages-container .dc-page-links-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.dc-pages-container .dc-page-links-column {
  vertical-align: top;
  padding: 0;
  border: 1px solid rgba(171, 190, 209, 0.3);
  border-right: none;
  border-left: none;
  border-bottom: none;
}

.dc-pages-container .dc-page-links-column:first-child {
  border-left: 1px solid rgba(171, 190, 209, 0.3);
}

.dc-pages-container .dc-page-links-column-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dc-pages-container .dc-page-link {
  display: block;
  text-decoration: none;
  width: 100%;
  text-align: center;
  border-right: 1px solid rgba(171, 190, 209, 0.3);
  border-bottom: 1px solid rgba(171, 190, 209, 0.3);
  padding: 16px 0;
}

.dc-pages-container .dc-page-link:hover {
  background-color: var(--primary-color);
}

.dc-pages-container .dc-page-link:hover > .dc-page-link-text {
  color: #fff;
}

.dc-pages-container .dc-page-link-text {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: var(--primary-color);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
}

@media (max-width: 1279px) {
  .introduction-section > .introduction-container > .intro-description-with-image > .intro-image {
    width: 420px;
  }

  .links-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 250px));
    justify-content: center;;
  }
}

@media (max-width: 1023px) {
  .introduction-section > .introduction-container > .intro-description-with-image {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .introduction-section > .introduction-container > .intro-description-with-image > .intro-image {
    float: none;
    width: 100%;
    height: 320px;
    object-fit: cover;
    margin: 0;
  }

  .dc-pages-container .dc-page-links-table tr {
    display: flex;
    width: 100%;
    flex-direction: column;
  }

  .dc-pages-container .dc-page-links-column {
    border-top: none;
    border-left: 1px solid rgba(171, 190, 209, 0.3);
  }

  .dc-pages-container .dc-page-links-column:first-child {
    border-top: 1px solid rgba(171, 190, 209, 0.3);
  }

  .dc-pages-container .dc-page-link-text {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .introduction-section > .introduction-container {
    padding: 40px 30px;
  }

  .introduction-section > .introduction-container > .intro-description-with-image > .intro-description > * {
    font-size: 18px;
  }

  .links-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .links-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
