/* Layout */
.main-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

.left-section {
    flex: 3;
    min-width: 250px;
}

.right-section {
    flex: 1;
    min-width: 200px;
}

/* Section title styling */
.section-title {
    text-align: left !important;
    font-size: 32px;
    font-weight: bold;
    color: #052374;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    letter-spacing: 0.5px;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #052374;
    display: block;
    margin: 12px 0 0;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: width 0.3s;
}

.section-title:hover::after {
    width: 80px;
}

/* View button */
.view-btn {
    background-color: transparent;
    border: 2px solid #052374;
    color: #052374;
    padding: 6px 12px;
    font-size: 0.9rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.view-btn:hover {
    background-color: #052374;
    color: white;
}

.view-btn .arrow-icon {
    width: 16px;
    height: 16px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.view-btn:hover .arrow-icon {
    transform: translateX(4px);
}




/* 3D-style Facts box */
.facts-box {
  background: linear-gradient(145deg, #f0f2f7, #ffffff); /* soft diagonal gradient */
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow:
    /* outer drop shadow */
    0 8px 16px rgba(0, 0, 0, 0.1),
    /* subtle inner shadow for depth */
    inset 0 2px 6px rgba(0, 0, 0, 0.05);
  border-left: 6px solid #052374; /* strong accent bar */
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* hover “lift” effect */
.facts-box:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.15),
    inset 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* rest unchanged */
.facts-box .facts-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #052374;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}

.facts-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facts-box ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* Apply button styling */
.apply-btn {
    background-color: transparent;
    border: 2px solid #052374;
    color: #052374 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.apply-btn .arrow-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    fill: currentColor;
}

.apply-btn:hover {
    background-color: #052374;
    color: #fff !important;
    transform: translateY(-2px);
}

.apply-btn:hover .arrow-icon {
    transform: translateX(4px);
}

.text-justify {
  text-align: justify;
}


/* Refund Policy 3D box */
.refund-box {
  background: linear-gradient(145deg, #ffe5e5, #ffffff); /* soft red→white */
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow:
    /* outer drop shadow */
    0 8px 16px rgba(0, 0, 0, 0.1),
    /* subtle inner shadow */
    inset 0 2px 6px rgba(0, 0, 0, 0.05);
  border-left: 6px solid #dc2626; /* red accent */
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.refund-box:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.15),
    inset 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Title with warning icon */
.refund-box .refund-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #dc2626;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.refund-box .warning-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  margin-right: 8px;
}

/* Body text */
.refund-box .refund-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}



/* — Related Programs as a list — */
.related-programs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-programs-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.related-programs-list li:last-child {
  margin-bottom: 0;
}

.related-programs-list a {
  color: #052374;
  text-decoration: none;
  transition: color 0.2s;
}

.related-programs-list a:hover {
  color: #041b5e;
}

/* Icon at start of each list item */
.list-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  flex-shrink: 0;
}

.facts-box .checklist-content ul {
  list-style: disc;
  margin: 0 0 0 1.2em;
  padding: 0;
}

.facts-box .checklist-content li {
  margin-bottom: 0.75em;
  line-height: 1.5;
}
.program-tags {
    color: #CCCCCC !important;
    font-size: 0.3em !important;
}