body {
  background-color: #fff;
}

#main {
  background-color: #fff;
}

/* Banner Styling */
.corrections-banner {
  position: relative;
  width: 100%;
  height: 75vh;
  background: url("../../images/banner1.jpg") no-repeat center center;
  background-size: cover;
  background-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.corrections-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.corrections-banner .banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.corrections-banner h2 {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  margin-bottom: .75rem;
}

.corrections-banner .subtitle strong {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff !important;
}

/*page title for pages that don't have banner*/
.page-title-bar h1 {
  width: 100%;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 3rem auto 0 auto;
  padding: 0 auto;
}

/*----------------------------------
  GENERAL SPACING IMPROVEMENTS
-----------------------------------*/
.corrections-content .content-card {
  padding: 2rem 2.25rem;
  margin-bottom: 2rem;
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border: 1px solid rgba(46, 90, 136, 0.15);
}

.corrections-content .content-card p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1.05rem;
}

.corrections-content .section-title {
  margin-bottom: 1.25rem;
  font-size: 1.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1F2A44;
  text-transform: uppercase;
  border-bottom: 2px solid #2E5A88;
  padding-bottom: 0.4rem;
}

.page-img .image.fit img {
  position: relative;
  width: 70%;
  overflow: hidden;
  border-radius: 1rem; /* modern soft corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin: 2rem auto;
}

/* For mobile adjustments */
@media (max-width: 768px) {
  .page-img {
    border-radius: 0.5rem;
    margin: 1.5rem 0;
  }
}


/*----------------------------------
  TYPOGRAPHY & LISTS
-----------------------------------*/
.icon-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 1.25rem 0;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  color: #2E5A88 !important;
}

strong {
  color: #000 !important;
}

.icon-list li a {
  color: #2E5A88 !important;
}

.icon-list li i {
  color: #2E5A88 !important;
  margin-right: 0.65rem;
  font-size: 1.15rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.list-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1F2A44;
}

/*----------------------------------
  SPECIAL NOTICE TEXT
-----------------------------------*/
.notice {
  font-weight: bold;
  color: #b22222;
  background: #fff5f5;
  padding: .75rem 1rem;
  border-left: 4px solid #b22222;
  border-radius: 0.35rem;
  margin-top: 1rem;
}

/*----------------------------------
  MAIL CARD
-----------------------------------*/
.mail-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 500px;
  margin: 1.5rem auto;
  padding: 1.25rem 1.5rem;
  background: #f8fbff;
  border: 1px dashed #2E5A88;
  border-radius: 0.75rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.mail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.10);
}

.mail-card-icon {
  font-size: 2.2rem;
  color: #2E5A88;
}

.mail-card-body {
  text-align: left;
}

.mail-card-title {
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
  color: #1F2A44;
  margin-bottom: 0.4rem;
}

.mail-address {
  font-style: normal;
  color: #2E5A88;
  font-weight: 500;
  line-height: 1.5;
}

.content-card a {
  color: #2E5A88 !important;
}

/* Mobile layout */
@media (max-width: 576px) {
  .mail-card {
    flex-direction: column;
    text-align: center;
  }
  .mail-card-body {
    text-align: center;
  }
}

/*----------------------------------
  SIDEBAR 
-----------------------------------*/
/* Sidebar Thumbnail Image */
.sidebar-thumbnail {
  margin-top: 1.5rem;
  text-align: center;
}

.sidebar-thumbnail img {
  width: 15vw;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: 1px solid rgba(46, 90, 136, 0.15);
  object-fit: cover;
}

/* Mail card */
.mail-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  max-width: 520px;
  margin: 1rem auto 0 auto;         /* center the card */
  padding: 1.1rem 1.25rem;
  background: #f7fbff;
  border: 1px dashed #2E5A88;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mail-card-icon {
  font-size: 2rem;
  line-height: 1;
  color: #2E5A88;
  flex: 0 0 auto;
}

.mail-card-body { text-align: left; }

.mail-card-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
  font-size: 1rem;
  color: #1F2A44;
  margin-bottom: 0.25rem;
}

.mail-address {
  margin: 0;
  font-style: normal;                /* keep same text style as body */
  color: #1F2A44;
  line-height: 1.45;
}

/* Mobile: stack icon above text for balance */
@media (max-width: 576px) {
  .mail-card {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  .mail-card-body { text-align: center; }
}


/* Layout */
.corrections-layout {
  padding-top: 3rem;
}

/* Completely neutralize .inner inside corrections layout */
.corrections-layout .inner {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

/* Ensure row behaves as flex layout side-by-side */
.corrections-container .row {
  display: flex;
  align-items: flex-start;
}

/* Optional: give content and sidebar natural spacing */
.corrections-sidebar {
  padding: 1rem;
}

.corrections-content {
  padding: 1rem;
}


.content-card {
  background-color: #fff;
  color: #000;
  border-radius: .5rem;
  /*box-shadow: 0 4px 10px rgba(0,0,0,0.15);*/
  padding: 2rem;
  margin-bottom: 2rem;
}

.section-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  border-bottom: 2px solid #2E5A88;
  padding-bottom: .5rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #1F2A44 !important;
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* Custom Lists */
.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  font-size: 1.1rem;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.custom-list li strong {
  color: #1F2A44 !important;
}

.custom-list i {
  color: #2E5A88;
  font-size: 1.3rem;
}

/* Responsive Sidebar Behavior */
@media (max-width: 768px) {
  #banner {
    height: 50vh;
  }

  .corrections-sidebar {
    display: none;
  }
}

.corrections-container .visiting-btn {
  color: white !important;
  padding: .5rem 2rem;
}