
.section-heading {
  font-size: 2rem;
  color: #002247;
  position: relative;
}
.title-underline {
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #002247, #0091ff);
  border-radius: 3px;
  margin-top: 10px;
  animation: widen 2s infinite alternate;
}
@keyframes widen {
  from { width: 70px; opacity: 0.7; }
  to { width: 130px; opacity: 1; }
}

/* Accordion Styling */
.accordion-button {
  background-color: #ffffff;
  border-radius: 10px !important;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #002247, #002247);
  color: white !important;
  box-shadow: 0 4px 12px rgba(0,34,71,0.2);
}
.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.accordion-body {
  background: #fff;
  border-left: 3px solid #007bff;
  border-radius: 0 0 10px 10px;
  padding: 25px;
  line-height: 1.8;
  font-size: 16px;
  color: #000;
}

/* List Styling */
.custom-list {
  list-style: none;
  padding-left: 0;
}
.custom-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #000;
  font-weight: 500;
}
.custom-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #002247;
}
.text-accent {
  color: #002247;
  transition: color 0.3s ease;
}
.text-accent:hover {
  color: #fff;
}
.accordion-button:not(.collapsed) .text-accent {
  color: #fff !important;
}
.animate__delay-1s { animation-delay: 0.6s; }
.section-heading {
  font-size: 2rem;
  color: #002247;
  font-weight: 700;
  position: relative;
}
.title-underline {
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg,#002247,#0091ff);
  border-radius: 3px;
  margin-top: 10px;
}

/* Instructions List */
.list-instructions li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #000;
}
.list-instructions li i {
  margin-right: 10px;
  color: #002247;
}

/* Card Styling */
.card-custom {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,34,71,0.15);
  box-shadow: 0 6px 25px rgba(0,34,71,0.1);
  transition: all 0.4s ease;
  padding: 25px 30px;
}
.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0,34,71,0.15);
}
.card-title {
  font-weight: 700;
  color: #002247;
  border-left: 5px solid #002247;
  padding-left: 12px;
  margin-bottom: 15px;
}

/* Button Styling */
.card-custom .btn {
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 6px 12px;
  transition: all 0.3s ease;
}
.card-custom .btn:hover {
  background: #0056b3;
  color: #fff;
}

/* Accordion Styling */
.accordion-button {
  background-color: #fff;
  border-radius: 10px !important;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.accordion-button:not(.collapsed) {
  background: linear-gradient(90deg,#002247,#007bff);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,34,71,0.2);
}
.accordion-body {
  background: #fff;
  border-left: 3px solid #007bff;
  border-radius: 0 0 10px 10px;
  padding: 20px;
  color: #000;
}

/* Accent Color */
.text-accent { color: #002247; }
.text-accent:hover { color: #0091ff; }

.text-accent {
  color: #002247;
  transition: color 0.3s ease;
}

/* Change color on hover */
.text-accent:hover {
  color: #fff;
}

/* Change color when the accordion is open (active) */
.accordion-button:not(.collapsed) .text-accent {
  color: #fff !important;
}