.elementor-3707 .elementor-element.elementor-element-9feb24e{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-78b7569 *//* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Updated primary color to #004aad */
  --primary: #004aad;
  --primary-foreground: #ffffff;
  --accent: #d97706;
  --accent-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #0a0a0a;
  --muted: #f5f5f5;
  --muted-foreground: #737373;
  --border: #e5e5e5;
  --radius: 0.5rem;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header Styles */
.header {
  width: 100%;
}

.top-bar {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2.5rem;
  font-size: 0.875rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-right {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .top-bar-right {
    display: flex;
  }
}

.top-link:hover {
  text-decoration: underline;
}

.dropdown {
  position: relative;
}

.dropdown-trigger,
.nav-link {
  background: none;
  border: none;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem;
}

.dropdown-trigger:hover,
.nav-link:hover {
  text-decoration: underline;
}

.chevron {
  font-size: 0.625rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  z-index: 100;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--foreground);
  font-size: 0.875rem;
}

.dropdown-menu a:hover {
  background-color: var(--muted);
}

.search-btn {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0.25rem;
}

.apply-btn {
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.25rem 1rem;
}

.apply-btn:hover {
  opacity: 0.9;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Main Navigation */
.main-nav {
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-circle {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-text {
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: block;
  }
}

.logo-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary);
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-item .nav-link {
  color: var(--foreground);
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
}

.nav-item .nav-link:hover {
  background-color: var(--muted);
  text-decoration: none;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-banner {
    height: 20rem;
  }
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 74, 173, 0.6), transparent);
}

/* Breadcrumb - Updated with #004aad background */
.breadcrumb-bar {
  background-color: var(--primary);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-bar .container {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  list-style: none;
  font-size: 0.875rem;
  margin: 0;
}

.breadcrumb a {
  color: var(--primary-foreground);
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.breadcrumb .separator {
  color: var(--primary-foreground);
}

.breadcrumb .current {
  background-color: var(--primary-foreground);
  color: var(--primary);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Main Content */
.main-content {
  padding: 2rem 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .content-wrapper {
    flex-direction: row;
  }
}

.content-main {
  flex: 1;
}

/* Page Title */
.page-title {
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.page-title h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
}

.intro-text {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.highlight-list {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.highlight-list a:hover {
  text-decoration: underline;
}

/* Filters - Full width single filter */
.filters {
  margin-bottom: 1.5rem;
}

.filter-row-full {
  width: 100%;
  margin-bottom: 1rem;
}

.filter-select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  font-size: 0.875rem;
  color: var(--foreground);
}

.search-box {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
}

.search-input {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  font-size: 0.875rem;
}

/* Course Listings - Without icons */
.course-listings {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.course-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  transition: box-shadow 0.2s;
}

.course-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.course-content {
  flex: 1;
  min-width: 0;
}

.course-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.course-content h3 a {
  color: var(--primary);
}

.course-content h3 a:hover {
  text-decoration: underline;
}

.course-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.course-schedule {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.course-schedule .day {
  font-weight: 500;
}

.course-schedule .instructor {
  color: var(--primary);
  font-weight: 500;
}

/* FAQ Section - Full Width with Banner */
.faq-section-wrapper {
  background-color: rgba(0, 74, 173, 0.03);
  padding-bottom: 3rem;
}

.faq-banner {
  position: relative;
  height: 12rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .faq-banner {
    height: 16rem;
  }
}

.faq-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-banner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 74, 173, 0.8);
}

.faq-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-banner-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  text-align: center;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .faq-banner-content h2 {
    font-size: 2.25rem;
  }
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-category {
  margin-bottom: 0;
}

.faq-category-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-trigger:hover {
  background-color: rgba(0, 74, 173, 0.05);
}

.accordion-trigger::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--muted-foreground);
}

details[open] .accordion-trigger::after {
  content: "−";
}

.accordion-trigger::-webkit-details-marker {
  display: none;
}

.accordion-content {
  padding: 0 1rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Sidebar - Without Need Help section */
.sidebar {
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .sidebar {
    width: 20rem;
  }
}

.sidebar-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.sidebar-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--primary);
  border-radius: var(--radius);
  transition: background-color 0.2s;
}

.sidebar-nav a:hover {
  background-color: var(--muted);
}

.sidebar-nav.programs-nav a.active {
  background-color: rgba(0, 74, 173, 0.1);
  color: var(--foreground);
  font-weight: 500;
  border-left: 2px solid var(--primary);
}/* End custom CSS */