#header-spacer {
  visibility: hidden;
  height: 0;
  transition: height 0.3s ease;
}

body.header-loaded #header-spacer {
  height: 80px; /* Default 80px */
  visibility: visible;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #5c5c5c;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
  color: #213b52;
}

a {
  color: #e67a21;
  transition: 0.3s;
}

a:hover {
  color: #ff8f4c;
  text-decoration: none;
}

.btn-primary {
  background-color: #e67a21;
  border-color: #e67a21;
}

.btn-primary:hover {
  background-color: #ff8f4c;
  border-color: #ff8f4c;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #e67a21;
  color: #fff;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 30px 0;
  background-color: #f4f9fc;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #213b52;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #635551;
  content: "/";
}

.breadcrumb-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Page Navigation */
/* Page Navigation - Updated to be static */
.page-nav {
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  position: static; /* Changed to static position */
  z-index: 500;
}

.page-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.page-nav ul li {
  margin: 5px 15px;
}

.page-nav ul li a {
  color: #213b52;
  font-weight: 600;
  padding: 5px 0;
  position: relative;
}

.page-nav ul li a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #e67a21;
  transition: all 0.3s ease;
}

.page-nav ul li a:hover:before,
.page-nav ul li a.active:before {
  width: 100%;
}

.page-nav ul li a.active {
  color: #e67a21;
}

/* Remove body padding that was added for fixed positioning */
body {
  /* padding-top: 0; */ /* Remove this if it was added */
  font-family: "Open Sans", sans-serif;
  color: #5c5c5c;
}

/* Keep header spacer as it was originally */
#header-spacer {
  visibility: hidden;
  height: 0;
  transition: height 0.3s ease;
}

body.header-loaded #header-spacer {
  height: 80px; /* Default 80px */
  visibility: visible;
}

/* Section Styles */
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f4f9fc;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  color: #213b52;
}

.section-title p {
  font-size: 16px;
  color: #777;
}

/* Support Resources */
.box {
  padding: 20px;
  text-align: center;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #ffffff;
  transition: all 0.3s ease;
  height: 100%;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
}

.box .icon {
  margin-bottom: 15px;
}

.box .icon i {
  font-size: 48px;
  color: #e67a21;
}

.box .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
}

.box .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
}

.img-kart {
  max-width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Warning Section */
.warning-section {
  background-color: #f4f9fc;
}

.warning-list {
  list-style: none;
  padding: 0;
}

.warning-item {
  display: flex;
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.warning-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.warning-number {
  font-size: 24px;
  font-weight: 700;
  color: #e67a21;
  margin-right: 20px;
  min-width: 40px;
}

.warning-text {
  font-size: 16px;
  line-height: 1.6;
}

/* Process Steps */
.process-steps {
  padding: 60px 0;
}

.step {
  text-align: center;
  padding: 20px;
}

.step-icon {
  font-size: 48px;
  color: #e67a21;
  margin-bottom: 15px;
}

.step-icon i {
  font-size: 48px;
}

.step-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.step-arrow {
  font-size: 24px;
  color: #e67a21;
}

/* Training Section */
.training-section {
  background-color: #ffffff;
}

.training-card {
  background-color: #f4f9fc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.training-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.training-icon {
  font-size: 48px;
  color: #e67a21;
  margin-bottom: 20px;
}

.training-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #213b52;
}

/* FAQs */
.faq {
  padding: 60px 0;
}

.card {
  border: none;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card-header {
  background-color: #ffffff;
  border-bottom: none;
  padding: 0;
}

.card-header h2 button {
  color: #213b52;
  font-weight: 600;
  padding: 20px;
  width: 100%;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}

.card-header h2 button:hover {
  color: #e67a21;
}

.card-header h2 button:after {
  content: '\f107';
  font-family: FontAwesome;
  position: absolute;
  right: 20px;
  transition: all 0.3s ease;
}

.card-header h2 button.collapsed:after {
  transform: rotate(180deg);
}

.card-body {
  padding: 20px;
  background-color: #f4f9fc;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1.5s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .breadcrumb-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .breadcrumbs ol {
    margin-top: 10px;
  }
  
  .step {
    margin-bottom: 20px;
  }
  
  .page-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .page-nav ul li {
    margin: 5px 0;
  }
}