.container {
  max-width: 1400px;
}

/* ITSB Hero Section - Two Column Layout */
.hero-section {
  padding: 80px 0;
  min-height: 600px;
  overflow: hidden;
  background-color: #f7f9fc;
  background-image: none;
}

.hero-section .container {
  max-width: 1280px;
  padding-left: 24px;
  padding-right: 24px;
}

.hero-section .hero-inner {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 10px;
  align-items: center;
  min-height: 520px;
}

.hero-section .hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 32px;
}

.hero-section .hero-content .hero-title {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #111827;
  margin: 0;
}

.hero-section .hero-content .hero-subtitle {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: -0.01em;
  margin: 0;
}

.hero-section .hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.hero-section .hero-content .hero-cta .btn {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.hero-section .hero-content .hero-cta .btn:hover,
.hero-section .hero-content .hero-cta .btn:focus {
  text-decoration: none;
}

.hero-section .hero-content .hero-cta .btn:visited {
  text-decoration: none;
}

.hero-section .hero-content .hero-cta .btn-primary {
  background-color: #0065ff;
  color: #ffffff !important;
  border: none;
  box-shadow: 0 1px 2px rgba(0, 101, 255, 0.1);
  text-decoration: none;
}

.hero-section .hero-content .hero-cta .btn-primary:hover,
.hero-section .hero-content .hero-cta .btn-primary:focus {
  background-color: #0051cc;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 101, 255, 0.2);
  transform: translateY(-1px);
  text-decoration: none;
}

.hero-section .hero-content .hero-cta .btn-outline-primary {
  background-color: transparent;
  color: #0065ff;
  border: 2px solid #e5e7eb;
  display: none;
}

.hero-section .hero-content .hero-cta .btn-outline-primary:hover,
.hero-section .hero-content .hero-cta .btn-outline-primary:focus {
  background-color: #e5f0ff;
  border-color: #e5f0ff;
  color: #0065ff;
}

.hero-section .hero-visual {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 520px;
}

.hero-section .hero-visual__frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-section .hero-figure {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1), 0 2px 8px rgba(15, 23, 42, 0.06);
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .hero-section .hero-content .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-section .hero-inner {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .hero-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .hero-section .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }
  
  .hero-section .hero-content {
    padding-right: 0;
    text-align: center;
    gap: 20px;
  }
  
  .hero-section .hero-content .hero-title {
    font-size: 2rem;
    line-height: 1.25;
  }
  
  .hero-section .hero-content .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-section .hero-cta {
    justify-content: center;
    margin-top: 4px;
  }
  
  .hero-section .hero-visual {
    min-height: 400px;
    order: 2;
  }
  
  .hero-section .hero-figure {
    min-height: 400px;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-section .hero-content .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-section .hero-content .hero-cta .btn {
    width: 100%;
    padding: 12px 24px;
  }
}

@media (max-width: 576px) {
  .hero-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .hero-section .hero-inner {
    gap: 32px;
  }
  
  .hero-section .hero-content .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-section .hero-content .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-section .hero-visual {
    min-height: 320px;
  }
  
  .hero-section .hero-figure {
    min-height: 320px;
    border-radius: 8px;
  }
}

@media (min-width: 1400px) {
  .hero-section .container {
    max-width: 1320px;
  }
  
  .hero-section .hero-content .hero-title {
    font-size: 3.25rem;
  }
  
  .hero-section .hero-figure {
    min-height: 560px;
  }
}

.trusted-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.trusted-section .trusted-title {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
}

.trusted-section .trusted-logos .logo-item img {
  max-height: 50px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.trusted-section .trusted-logos .logo-item .more-partners {
  font-size: 1rem;
  color: #666;
  white-space: nowrap;
}

.course-finder-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.course-finder-section .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .course-finder-section .section-title {
    font-size: 1.875rem;
  }
}

.course-finder-section .search-form {
  margin: 0 auto 30px;
  max-width: 760px;
}

.course-finder-section .search-form .search-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

@media (max-width: 576px) {
  .course-finder-section .search-form .search-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}

.course-finder-section .search-form .search-wrapper .search-input {
  flex: 1;
  max-width: 600px;
  border: none;
  background-color: #f4f6f8;
  font-size: 1rem;
  padding: 16px 24px;
  border-radius: 999px;
  color: #212529;
}

.course-finder-section .search-form .search-wrapper .search-input::-webkit-input-placeholder {
  color: rgba(33, 37, 41, 0.5);
}

.course-finder-section .search-form .search-wrapper .search-input:-ms-input-placeholder {
  color: rgba(33, 37, 41, 0.5);
}

.course-finder-section .search-form .search-wrapper .search-input::-ms-input-placeholder {
  color: rgba(33, 37, 41, 0.5);
}

.course-finder-section .search-form .search-wrapper .search-input::placeholder {
  color: rgba(33, 37, 41, 0.5);
}

.course-finder-section .search-form .search-wrapper .search-input:focus {
  outline: none;
}

@media (max-width: 576px) {
  .course-finder-section .search-form .search-wrapper .search-input {
    max-width: 100%;
  }
}

.course-finder-section .search-form .search-wrapper .search-button {
  background-color: #0065ff;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .course-finder-section .search-form .search-wrapper .search-button {
    width: 100%;
  }
}

.course-finder-section .keyword-chips {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 0 0.25rem;
}

.course-finder-section .keyword-chips::before,
.course-finder-section .keyword-chips::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  pointer-events: none;
  transition: opacity 0.2s ease;
  opacity: 0;
  z-index: 2;
}

.course-finder-section .keyword-chips::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 40%, rgba(255, 255, 255, 0));
}

.course-finder-section .keyword-chips::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 40%, rgba(255, 255, 255, 0));
}

.course-finder-section .keyword-chips .chip-nav {
  background-color: #0065ff;
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
  flex-shrink: 0;
}

.course-finder-section .keyword-chips .chip-nav:disabled {
  opacity: 0.3;
  cursor: default;
}

.course-finder-section .keyword-chips.is-scrollable .chip-nav {
  opacity: 1;
  pointer-events: auto;
}

.course-finder-section .keyword-chips.is-scrollable::before,
.course-finder-section .keyword-chips.is-scrollable::after {
  opacity: 1;
}

.course-finder-section .keyword-chips .keyword-chips__viewport {
  overflow-x: auto;
  flex: 1;
  scrollbar-width: none;
  min-width: 0;
}

.course-finder-section .keyword-chips .keyword-chips__viewport::-webkit-scrollbar {
  display: none;
}

.course-finder-section .keyword-chips .keyword-chips__track {
  display: flex;
  gap: 12px;
  padding: 4px 4px 4px 0;
  scroll-snap-type: x proximity;
}

.course-finder-section .keyword-chips.keyword-chips--static {
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.course-finder-section .keyword-chips.keyword-chips--static::before,
.course-finder-section .keyword-chips.keyword-chips--static::after {
  display: none;
}

.course-finder-section .keyword-chips.keyword-chips--static .chip-btn {
  scroll-snap-align: unset;
}

.course-finder-section .keyword-chips .chip-btn {
  background-color: #ffffff;
  border: 2px solid #0065ff;
  padding: 12px 28px;
  border-radius: 999px;
  color: #0065ff;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
  scroll-snap-align: start;
}

.course-finder-section .keyword-chips .chip-btn:hover {
  background-color: rgba(1, 64, 54, 0.05);
  text-decoration: none;
}

@media (max-width: 768px) {
  .course-finder-section .keyword-chips {
    gap: 8px;
  }
  .course-finder-section .keyword-chips .chip-nav {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .course-finder-section .keyword-chips .chip-btn {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .course-finder-section .keyword-chips {
    padding: 0 40px;
  }
  .course-finder-section .keyword-chips .chip-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.85;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  .course-finder-section .keyword-chips .chip-nav--prev {
    left: 4px;
  }
  .course-finder-section .keyword-chips .chip-nav--next {
    right: 4px;
  }
  .course-finder-section .keyword-chips .keyword-chips__viewport {
    padding: 0 4px;
  }
}

.featured-programs-section {
  padding: 70px 0;
}

.featured-programs-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  padding-right: 60px;
}

@media (max-width: 768px) {
  .featured-programs-section .section-title {
    font-size: 1.75rem;
    padding-right: 0;
  }
}

.featured-programs-section .btn-featured {
  background-color: #0065ff;
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.featured-programs-section .btn-featured:hover {
  background-color: #01352d;
  transform: translateY(-1px);
}

.featured-programs-section .btn-featured:focus,
.featured-programs-section .btn-featured:active,
.featured-programs-section .btn-featured:visited,
.featured-programs-section .btn-featured:focus-visible {
  color: #ffffff;
  background-color: #0065ff;
  border: none !important;
  box-shadow: none !important;
  outline: none;
  text-decoration: none;
}

.featured-programs-section .program-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  height: 100%;
}

.featured-programs-section .program-card .program-header {
  gap: 16px;
}

.featured-programs-section .program-card .program-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: #212529;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-programs-section .program-card .program-icon .program-icon-svg {
  width: 28px;
  height: 28px;
}

.featured-programs-section .program-card .program-title-section {
  flex: 1;
}

.featured-programs-section .program-card .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #212529;
  line-height: 1.4;
}

.featured-programs-section .program-card .program-subtitle {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #6c757d;
}

.featured-programs-section .program-card .features-label {
  font-size: 0.875rem;
  color: #212529;
}

.featured-programs-section .program-card .program-features li {
  font-size: 0.875rem;
  color: #212529;
}

.featured-programs-section .program-card .program-features li i {
  color: #0065ff;
  font-size: 0.75rem;
}

.featured-programs-section .program-card .view-all-link {
  font-size: 0.875rem;
  color: #212529;
  text-decoration: none;
}

.featured-programs-section .program-card .view-all-link:hover {
  text-decoration: underline;
}

.featured-programs-section .program-card .program-pricing .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0065ff;
  margin-bottom: 0;
}

.featured-programs-section .program-card .btn {
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 12px 24px;
  border-radius: 8px;
}

.featured-programs-section .program-card .btn-primary {
  background-color: #0065ff;
  border: none;
  color: #ffffff;
}

.featured-programs-section .program-card .btn-outline-secondary {
  background-color: #ffffff;
  border: 1px solid #212529;
  color: #212529;
}

.testimonials-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.testimonials-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
}

@media (max-width: 768px) {
  .testimonials-section .section-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }
}

.testimonials-section .testimonial-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  height: 100%;
}

.testimonials-section .testimonial-card .rounded-circle {
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.testimonials-section .testimonial-card .rating .fa-star {
  font-size: 1.125rem;
  color: #FFC107;
  margin-right: 4px;
}

.testimonials-section .testimonial-card .testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #212529;
}

.testimonials-section .btn-testimonial,
.reviews-testimonials-section .btn-testimonial {
  background-color: #0065ff;
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.testimonials-section .btn-testimonial:hover,
.reviews-testimonials-section .btn-testimonial:hover {
  background-color: #01352d;
  transform: translateY(-1px);
}

.testimonials-section .btn-testimonial:focus,
.testimonials-section .btn-testimonial:active,
.testimonials-section .btn-testimonial:visited,
.testimonials-section .btn-testimonial:focus-visible,
.reviews-testimonials-section .btn-testimonial:focus,
.reviews-testimonials-section .btn-testimonial:active,
.reviews-testimonials-section .btn-testimonial:visited,
.reviews-testimonials-section .btn-testimonial:focus-visible {
  color: #ffffff;
  background-color: #0065ff;
  border: none !important;
  box-shadow: none !important;
  outline: none;
  text-decoration: none;
}

.categories-section {
  padding: 70px 0;
}

.categories-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .categories-section .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

.categories-section .categories-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

@media (max-width: 991px) {
  .categories-section .categories-pills {
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .categories-section .categories-pills {
    gap: 10px;
    flex-direction: column;
  }
}

.categories-section .categories-pills .category-pill {
  background-color: #ffffff;
  border: 2px solid #0065ff;
  color: #0065ff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.categories-section .categories-pills .category-pill:hover {
  background-color: rgba(1, 64, 54, 0.05);
  text-decoration: none;
}


@media (max-width: 991px) and (min-width: 577px) {
  .categories-section .categories-pills .category-pill {
    flex: 0 0 calc(50% - 6px);
  }
}

@media (max-width: 768px) {
  .categories-section .categories-pills .category-pill {
    padding: 12px 24px;
    font-size: 0.9375rem;
  }
}

@media (max-width: 576px) {
  .categories-section .categories-pills .category-pill {
    width: 100%;
  }
}

.footer {
  background-color: #212529;
}

.footer h5 {
  font-size: 1.125rem;
  font-weight: 600;
}

.footer a {
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer .social-links a {
  font-size: 1.25rem;
  display: inline-block;
  margin-right: 16px;
}

.navbar {
  padding: 1rem 0;
  background-color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
  .navbar .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.navbar .navbar-brand img {
  height: 40px;
}

.navbar .navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

@media (max-width: 991px) {
  .navbar .navbar-collapse {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
  }
}

.navbar .nav-link {
  font-weight: 500;
  color: #212529 !important;
  margin: 0;
  font-size: 0.9375rem;
  padding: 8px 0;
}

@media (max-width: 991px) {
  .navbar .nav-link {
    margin: 0;
    padding: 14px 0;
    font-size: 1rem;
  }
}

.navbar .navbar-nav .nav-item .nav-link[href*=login] {
  border: 2px solid #0065ff;
  border-radius: 8px;
  color: #0065ff !important;
  padding: 8px 24px;
  margin-right: 8px;
}

@media (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link[href*=login] {
    display: block;
    margin: 16px 0 12px 0;
    padding: 14px 0;
    width: 100%;
    text-align: center;
  }
}

.navbar .navbar-nav .nav-item .nav-link[href*=login]:hover {
  background-color: #0065ff;
  color: #ffffff !important;
}

.navbar .btn-primary {
  background-color: #0065ff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 500;
  font-size: 0.9375rem;
}

@media (max-width: 991px) {
  .navbar .btn-primary {
    margin: 0 0 12px 0;
    display: block;
    padding: 14px 0;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .navbar .navbar-nav {
    margin-top: 0;
  }

  .navbar .navbar-nav:last-child {
    margin-top: 0;
  }

  .navbar .navbar-nav .nav-item {
    margin: 0;
    padding: 0;
  }
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 24px;
}

.btn {
  font-weight: 500;
  border-radius: 8px;
}

.reviews-hero-section {
  position: relative;
  background-color: #0065ff;
  background-image: url("/landingPageItsb/images/bg-pattern.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0 110px;
  color: #ffffff;
}

.reviews-hero-section .reviews-breadcrumb .breadcrumb-item {
  font-weight: 500;
}

.reviews-hero-section .reviews-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.reviews-hero-section .reviews-breadcrumb .breadcrumb-item a:hover,
.reviews-hero-section .reviews-breadcrumb .breadcrumb-item a:focus {
  color: #ffffff;
}

.reviews-hero-section .reviews-breadcrumb .breadcrumb-item.active {
  color: #ffffff;
}

.reviews-hero-section .reviews-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

.reviews-hero-section .reviews-hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.reviews-hero-section .reviews-hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.reviews-hero-section .reviews-hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.reviews-highlight-section {
  background-color: #f8f9fa;
  padding: 120px 0 100px;
}

.reviews-highlight-section .highlight-header {
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.reviews-highlight-section .highlight-header .text-muted {
  font-size: 1.05rem;
}

.reviews-highlight-section .highlight-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(1, 64, 54, 0.12);
  margin: 0 auto;
  max-width: 1200px;
}

.reviews-highlight-section .highlight-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 340px;
}

.reviews-highlight-section .highlight-quote-card {
  position: absolute;
  left: 40px;
  bottom: 40px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 18px;
  padding: 28px;
  max-width: 380px;
  box-shadow: 0 24px 60px rgba(1, 64, 54, 0.18);
}

.reviews-highlight-section .highlight-quote-card .quote-icon {
  color: #ff9800;
  font-size: 2.5rem;
  line-height: 1;
}

.reviews-highlight-section .highlight-quote-card .highlight-quote-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #212529;
}

.reviews-highlight-section .highlight-quote-card .highlight-author-role {
  font-weight: 600;
  color: #212529;
}

.reviews-highlight-section .highlight-quote-card .highlight-author-organization {
  font-size: 0.9375rem;
}

.footer .footer-main {
  background-color: #0065ff;
  color: #ffffff;
  padding: 60px 0 40px;
}

.footer .footer-main .footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer .footer-main .footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer .footer-main .footer-address {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer .footer-main .footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.footer .footer-main .footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer .footer-main .footer-links li a:hover {
  color: #ffffff;
}

.footer .footer-bottom {
  background-color: #f5f5f5;
  padding: 20px 0;
}

.footer .footer-bottom .footer-copyright {
  font-size: 0.875rem;
  color: #666;
}

.footer .footer-bottom .footer-policy-links li {
  margin-left: 24px;
}

.footer .footer-bottom .footer-policy-links li:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-policy-links li a {
  color: #666;
  text-decoration: none;
  font-size: 0.875rem;
}

.footer .footer-bottom .footer-policy-links li a:hover {
  color: #212529;
}

@media (max-width: 1024px) {
  .reviews-hero-section {
    padding: 100px 0;
  }

  .reviews-highlight-section {
    padding: 100px 0 80px;
  }

  .reviews-highlight-section .highlight-quote-card {
    left: 24px;
    right: 24px;
    bottom: 24px;
    max-width: 360px;
  }

  .course-finder-section,
  .featured-programs-section,
  .testimonials-section,
  .categories-section {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .reviews-hero-section {
    padding: 80px 0;
  }

  .reviews-hero-section .reviews-hero-title {
    font-size: 2.25rem;
  }

  .reviews-hero-section .reviews-hero-subtitle {
    font-size: 1rem;
  }

  .reviews-highlight-section {
    padding: 80px 0 70px;
  }

  .reviews-highlight-section .highlight-quote-card {
    position: static;
    margin: 24px;
    max-width: 100%;
  }

  .section-title {
    font-size: 1.875rem !important;
  }

  .footer .footer-main {
    padding: 40px 0 30px;
  }

  .footer .footer-bottom {
    text-align: center;
  }

  .footer .footer-bottom .footer-policy-links li {
    margin-left: 16px;
    margin-right: 0;
  }
}


