body {
  min-height: 100vh;
  background-color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.hero-section {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: 9rem;
    max-width: 1120px;
    margin: 0 auto 48px;
    /* padding: 32px 16px; */
    
    /* padding-bottom: 9rem;
    margin-left: 4rem;
    margin-right: 4rem; */ */
  }
}

.latest-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: #f2f7f5;
  color: black;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #22c55e;
  border-radius: 9999px;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.hero-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  line-height: 1.2;
}

@media (min-width: 576px) {
  .hero-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  color: black;
  line-height: 1.75;
}

@media (min-width: 576px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 992px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.btn-custom {
  width: 175px !important;
  height: 56px !important;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.9rem;
  border: 1px solid;
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0;
  vertical-align: top;
  box-sizing: border-box;
}

.btn-check-result {
  background-color: #7ac52d !important;
  color: black !important;
  border: 1px solid #7dc531 !important;
}

.btn-check-result:hover {
  background-color: white !important;
  color: black !important;
  border: 1px solid #7dc531 !important;
}

.btn-register {
  background-color: white !important;
  color: black !important;
  border: 1px solid #7dc531 !important;
}

.btn-register:hover {
  background-color: #7dc531 !important;
  color: black !important;
  border: 1px solid #7dc531 !important;
}

/* Mobile responsive styles for buttons */
@media (max-width: 768px) {
  .btn-custom {
    width: 100% !important;
    max-width: 280px !important;
    height: 48px !important;
    font-size: 0.85rem !important;
    margin: 0 auto !important;
  }

  /* Add top margin to hero left content on mobile */
  .hero-section .col-12.col-lg-6:first-child .text-center {
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .btn-custom {
    width: 100% !important;
    max-width: 260px !important;
    height: 44px !important;
    font-size: 0.8rem !important;
  }
}

.official-badge {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #4b5563;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  padding: 4px 12px;
  width: 422px;
}

.checkmark-circle {
  width: 1rem;
  height: 1rem;
  background-color: #22c55e;
  border-radius: 9999px;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  justify-content: center;
}

.hero-image {
  max-width: 550px;
  width: 100%;
  height: auto;
}

@media (min-width: 992px) {
  .hero-image {
    position: absolute;
    top: -3rem;
    left: 2rem;
  }
}

/* Component Placeholder Styles */
.component-placeholder {
  padding: 3rem 1rem;
  background-color: #f8f9fa;
  border: 1px dashed #dee2e6;
  border-radius: 8px;
  text-align: center;
  margin: 2rem 0;
  color: #6c757d;
  font-size: 1.25rem;
  font-weight: 500;
}

@media (max-width: 991px) {
  .text-lg-start {
    text-align: center !important;
  }
  .justify-content-lg-start {
    justify-content: center !important;
  }
}

/* Header styles converted from Next.js component */
.site-header {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.site-header .container-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.site-header .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand h1 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
}
.brand p {
  margin: 0;
  font-size: 0.75rem;
  color: #6b7280;
  max-width: 220px;
}

.nav-center {
  display: none;
  gap: 32px;
}
.nav-center a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-center a:hover {
  color: black;
}
.nav-center a.active {
  color: black;
  border-bottom: 2px solid #7AC52D;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-school {
  padding: 10px 18px;
  border-radius: 9999px;
  border: 1px solid #7ac52d;
  background: transparent;
  color: #182700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.btn-school:hover {
  background-color: #7ac52d;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(122, 197, 45, 0.3);
}

.btn-school.loading {
  opacity: 0.85;
  pointer-events: none;
}

.mobile-toggle {
  display: inline-flex;
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}
.mobile-menu.open {
  display: block;
  position: relative;
  width: 100%;
  background: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.mobile-menu a {
  display: block;
  padding: 8px 16px;
  color: #374151;
  text-decoration: none;
  border-left: 1px solid transparent;
}
.mobile-menu a.active {
  color: #182700;
  background: #f8fafc;
  border-left-color: #182700;
}

/* Desktop layout */
@media (min-width: 768px) {
  .nav-center {
    display: flex;
  }
  .mobile-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* Mobile layout - hide School Login button since it's in hamburger menu */
@media (max-width: 767px) {
  .header-right .btn-school {
    display: none;
  }
}

/* avoid content hidden by fixed header */
.page-content {
  padding-top: 80px;
}

/* OurServices section styles */
.our-services {
  max-width: 1120px;
  margin: 0 auto 48px;
  padding: 32px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
}
.our-services .section-title {
  text-align: center;
  margin-bottom: 24px;
}
.our-services .tabs {
  display: flex;
  border-bottom: 1px solid #d1d5db;
  overflow-x: auto;
  margin-left: 68px;
  margin-right: 68px;
}
.our-services .tabs button {
  flex: 1;
  padding: 12px 14px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}
.our-services .tabs button.active {
  background: #7ac52d;
  color: #fff;
  border-radius: 10px 10px 0 0;
}

.our-services .content {
  margin-top: 24px;
  margin-left: 68px;
  margin-right: 68px;
}
.our-services .service-grid {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .our-services .service-grid {
    flex-direction: row;
  }
}

.our-services .service-left {
  width: 100%;
  max-width: 482px;
  height: 196px;
  padding-right: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.our-services .service-left .btn-school {
  width: 50%;
  max-width: 180px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.our-services .service-left h2 {
  color: #182700;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.our-services .service-left h2 span {
  position: relative;
  display: inline-block;
}

.our-services .service-left h2 span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg width='175' height='9' viewBox='0 0 175 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7C26.8577 3.22688 95.8585 -2.05548 173 7' stroke='%23A6D873' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media (min-width: 768px) {
  .our-services .service-left {
    width: 482px;
  }
}

.our-services .service-right {
  width: 100%;
  max-width: 428px;
  height: 344px;
  min-height: 344px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .our-services .service-right {
    width: 428px;
  }
}

.our-services h2 {
  color: #182700;
  margin-bottom: 16px;
  font-size: 28px;
}
.our-services p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}

.service-card-bg {
  background: #182700;
  color: #fff;
  border-radius: 18px;
  padding: 20px;
  height: 344px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.service-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid #fff;
  margin-bottom: 12px;
}

.service-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-item .num {
  background: #fff;
  color: #000;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.service-item .text {
  font-size: 1.1rem;
  line-height: 1.4;
}

.service-item .service-title {
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}

/* Mobile responsive styles for Our Services */
@media (max-width: 768px) {
  .our-services {
    margin: 0 1rem 2rem;
    padding: 1.5rem 1rem;
  }

  .our-services .tabs {
    margin-left: 0;
    margin-right: 0;
    overflow-x: auto;
    border-bottom: 1px solid #d1d5db;
  }

  .our-services .tabs button {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
    min-width: 0;
    white-space: nowrap;
    border-radius: 8px 8px 0 0;
  }

  .our-services .tabs button.active {
    border-radius: 8px 8px 0 0;
  }

  .our-services .content {
    margin-left: 0;
    margin-right: 0;
    margin-top: 1.5rem;
  }

  .our-services .service-grid {
    gap: 2rem;
  }

  .our-services .service-left {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding-right: 0;
    text-align: center;
  }

  .our-services .service-left h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .our-services .service-left p {
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .our-services .service-left .btn-school {
    width: 80%;
    max-width: 200px;
    margin: 0 auto;
  }

  .our-services .service-right {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
  }

  .service-card-bg {
    height: auto;
    min-height: 280px;
    padding: 1.5rem;
  }

  .service-item .num {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .service-item .service-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .our-services {
    margin: 0 0.5rem 1.5rem;
    padding: 1rem 0.5rem;
  }

  .our-services .tabs button {
    padding: 0.6rem 0.3rem;
    font-size: 0.75rem;
  }

  .our-services .service-left h2 {
    font-size: 1.25rem;
  }

  .our-services .service-left p {
    font-size: 0.85rem;
  }

  .our-services .service-left .btn-school {
    width: 90%;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }

  .service-card-bg {
    padding: 1rem;
    min-height: 240px;
  }

  .service-item {
    gap: 8px;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .service-item .num {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .service-item .service-title {
    font-size: 0.9rem;
    line-height: 1.3;
  }
}

.animate-fadein {
  animation: fadein 0.28s ease both;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* EdcDirectorSection styles */
.edc-director-section {
  background-color: #e4f3d5;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 48px 16px;
  gap: 24px;
}

@media (min-width: 1024px) {
  .edc-director-section {
    flex-direction: row;
    padding: 64px 128px;
    gap: 16px;
  }
}

.director-left {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
  margin-top: -24px;
  transform: scale(0.95);
}

@media (min-width: 576px) {
  .director-left {
    margin-top: -32px;
  }
}

@media (min-width: 1024px) {
  .director-left {
    width: 50%;
    margin-top: 0;
    margin-left: -80px;
  }
}

.director-images {
  position: relative;
}

.director-asset {
  position: absolute;
  left: -8px;
  z-index: 0;
  max-width: 200px;
  width: 250px;
  height: auto;
}

@media (min-width: 576px) {
  .director-asset {
    max-width: 250px;
  }
}

.director-main {
  position: relative;
  z-index: 10;
  width: 220px;
  height: auto;
  object-fit: contain;
}

@media (min-width: 576px) {
  .director-main {
    width: 280px;
  }
}

@media (min-width: 1024px) {
  .director-main {
    width: 299px;
  }
}

.director-badge {
  position: absolute;
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  border: 1px solid #a4a4a4;
  color: #001e1a;
  background-color: #e4f3d5;
  border-radius: 9999px;
  padding: 4px 12px;
}

@media (min-width: 576px) {
  .director-badge {
    width: 290px;
  }
}

.director-badge img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.director-badge p {
  font-size: 12px;
  text-align: center;
  margin: 0;
}

@media (min-width: 576px) {
  .director-badge p {
    font-size: 14px;
  }
}

.director-right {
  width: 100%;
  background: white;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 576px) {
  .director-right {
    padding: 32px;
  }
}

@media (min-width: 1024px) {
  .director-right {
    width: 50%;
  }
}

.director-right h2 {
  font-size: 24px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 24px;
}

@media (min-width: 576px) {
  .director-right h2 {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .director-right h2 {
    font-size: 36px;
  }
}

.director-content {
  margin-bottom: 24px;
}

.director-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 16px;
}

@media (min-width: 576px) {
  .director-content p {
    font-size: 16px;
  }
}

/* LandingSlider styles */
.landing-slider {
  width: 100%;
  padding: 32px 0;
}

.slider-features {
  max-width: 1200px;
  margin: 0 auto 32px;
  padding: 0 16px;
}

.features-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  border: 1px solid #7ac52d;
  border-radius: 12px;
  padding: 16px 8px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  gap: 24px;
}

@media (min-width: 768px) {
  .features-container {
    flex-direction: row;
    gap: 0;
  }
}

.feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0 16px;
}

.feature-divider {
  display: none;
  width: 1px;
  height: 128px;
  background-color: #d1d5db;
}

@media (min-width: 768px) {
  .feature-divider {
    display: block;
  }
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: #6dd130;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 20px;
  color: #000;
  font-weight: bold;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .feature-title {
    font-size: 24px;
  }
}

.feature-description {
  color: #6b7280;
  font-size: 14px;
}

@media (min-width: 768px) {
  .feature-description {
    font-size: 16px;
  }
}

.slider-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 16px;
  overflow: visible;
}

.slider-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f1f1f1;
  border-radius: 16px;
  overflow: visible;
  width: 100%;
  max-width: 1081px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .slider-main {
    flex-direction: row;
    height: 327px;
  }
}

.slider-image-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .slider-image-section {
    width: 33.333%;
  }
}

.slider-image {
  width: 100%;
  height: 192px;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out;
}

@media (min-width: 768px) {
  .slider-image {
    height: 327px;
  }
}

.slider-content {
  width: 100%;
  padding: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .slider-content {
    width: 66.667%;
    padding: 32px;
    text-align: left;
  }
}

.slider-label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
  display: block;
}

@media (min-width: 768px) {
  .slider-label {
    font-size: 14px;
  }
}

.slider-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #000;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 4px solid;
}

@media (min-width: 768px) {
  .slider-title {
    font-size: 30px;
  }
}

.slider-title.pslce {
  border-image: linear-gradient(to right, #7ac52d, #3b5f16) 1;
}

.slider-title.bece {
  border-image: linear-gradient(to right, #2d5dc5, #0f8ce9) 1;
}

.slider-title.pscle {
  border-image: linear-gradient(to right, #ff6767, #993e3e) 1;
}

.slider-description {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #182700;
}

@media (min-width: 768px) {
  .slider-description {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .slider-description {
    font-size: 36px;
  }
}

.slider-button-container {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .slider-button-container {
    justify-content: flex-start;
  }
}

.slider-nav {
  position: absolute;
  top: 96px;
  transform: translateY(-50%);
  background: #7ac52d;
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  width: 40px;
  height: 40px;
  z-index: 10;
}

@media (min-width: 768px) {
  .slider-nav {
    top: 50%;
  }
}

.slider-nav-prev {
  left: -12px;
}

@media (min-width: 768px) {
  .slider-nav-prev {
    left: -20px;
  }
}

.slider-nav-next {
  right: -12px;
}

@media (min-width: 768px) {
  .slider-nav-next {
    right: -20px;
  }
}

.slider-nav svg {
  width: 24px;
  height: 24px;
  color: #000;
}

.slider-fade-in {
  animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* FAQ styles */
.faq-section {
  min-height: 100vh;
  background-color: #182700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
}

@media (min-width: 576px) {
  .faq-section {
    padding: 48px 24px;
  }
}

@media (min-width: 1024px) {
  .faq-section {
    padding: 48px 96px;
  }
}

.faq-container {
  width: 100%;
  max-width: 1120px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .faq-container {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.faq-left {
  text-align: center;
}

@media (min-width: 1024px) {
  .faq-left {
    text-align: left;
  }
}

.faq-title {
  color: white;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 24px;
}

.faq-title .responsive-break {
  display: none;
}

@media (min-width: 1024px) {
  .faq-title .responsive-break {
    display: block;
  }
}

@media (min-width: 576px) {
  .faq-title {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .faq-title {
    font-size: 48px;
  }
}

.faq-subtitle {
  color: white;
  opacity: 0.9;
  font-size: 14px;
}

@media (min-width: 576px) {
  .faq-subtitle {
    font-size: 16px;
  }
}

.faq-search {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  background: white;
  color: #374151;
  border: none;
  font-size: 14px;
  margin-bottom: 24px;
}

@media (min-width: 576px) {
  .faq-search {
    padding: 16px 24px;
    font-size: 16px;
    margin-bottom: 32px;
  }
}

.faq-search:focus {
  outline: none;
  box-shadow: 0 0 0 2px #22c55e;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: #90cf50;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.hidden {
  display: none;
}

.faq-question {
  width: 100%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (min-width: 576px) {
  .faq-question {
    padding: 20px 24px;
  }
}

.faq-question:hover {
  background-color: #578a25;
}

.faq-question-text {
  color: white;
  font-weight: 500;
  font-size: 14px;
  flex: 1;
  margin-right: 16px;
}

@media (min-width: 576px) {
  .faq-question-text {
    font-size: 16px;
  }
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: white;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-icon.rotated {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 8px 16px 16px;
  background-color: #121212;
  border-radius: 0 0 8px 8px;
  display: none;
  animation: fadeInDown 0.3s ease;
}

@media (min-width: 576px) {
  .faq-answer {
    padding: 8px 24px 20px;
  }
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  color: white;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.5;
}

@media (min-width: 576px) {
  .faq-answer p {
    font-size: 16px;
  }
}

.faq-answer ul {
  list-style-type: disc;
  padding-left: 20px;
  color: white;
  font-size: 14px;
  margin-bottom: 8px;
}

@media (min-width: 576px) {
  .faq-answer ul {
    font-size: 16px;
  }
}

.faq-answer li {
  margin-bottom: 4px;
  line-height: 1.5;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer styles */
.site-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: rgba(228, 243, 213, 0.22);
  padding: 48px 24px;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (min-width: 576px) {
  .site-footer {
    padding: 48px 40px;
  }
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 48px 105px;
  }
}

.footer-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 40px;
}

@media (min-width: 1024px) {
  .footer-container {
    flex-direction: row;
  }
}

.footer-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .footer-left {
    width: 33.333%;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand img {
  width: 50px;
  height: 50px;
}

.footer-brand-text h1 {
  font-size: 20px;
  font-weight: bold;
  color: black;
  margin: 0;
}

@media (min-width: 576px) {
  .footer-brand-text h1 {
    font-size: 24px;
  }
}

.footer-brand-text p {
  color: #777777;
  font-size: 12px;
  margin: 0;
}

@media (min-width: 576px) {
  .footer-brand-text p {
    font-size: 14px;
  }
}

.footer-right {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .footer-right {
    width: 66.667%;
    gap: 24px;
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 120px;
}

.footer-section.email-section {
  min-width: 100%;
  gap: 12px;
}

@media (min-width: 576px) {
  .footer-section.email-section {
    min-width: 280px;
  }
}

.footer-section h2 {
  color: black;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-section a {
  color: #5e5e5e;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #182700;
}

.footer-section p {
  color: #5e5e5e;
  font-size: 14px;
  margin: 0;
}

.email-input {
  margin-bottom: 8px;
  padding: 8px;
  border: 1px solid #d1d5db;
  color: black;
  background: white;
  border-radius: 4px;
  width: 100%;
  font-size: 14px;
}

.email-input::placeholder {
  color: #9ca3af;
}

.email-input:focus {
  outline: none;
  border-color: #182700;
  box-shadow: 0 0 0 2px rgba(24, 39, 0, 0.1);
}

.email-button-container {
  width: 100%;
}

@media (min-width: 576px) {
  .email-button-container {
    width: 50%;
  }
}

.footer-divider {
  margin-top: 40px;
  width: 100%;
  height: 1px;
  background-color: #182700;
}

.footer-copyright {
  margin-top: 16px;
  text-align: center;
  color: #5e5e5e;
  font-size: 12px;
  font-weight: 600;
}

@media (min-width: 576px) {
  .footer-copyright {
    font-size: 14px;
  }
}

/* Page-specific styles */
.page-content {
  min-height: calc(100vh - 100px);
}

/* Hero Section Exams */
.hero-section-exams,
.hero-section-news {
  background-color: #182700;
  position: relative;
  overflow: hidden;
  margin-top: 10rem;
  padding: 1rem 0;
  min-height: 280px;
}

.hero-container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-left-image {
  margin-left: 1rem;
  margin-top: 2rem;
  margin-bottom: -1rem;
}

.hero-director-image {
  height: 16rem;
  width: 100%;
  object-fit: contain;
}

.hero-middle-content {
  width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  text-align: center;
  margin: 0 auto;
}

.hero-middle-content.with-left-image {
  margin-left: -8rem;
}

.hero-button {
  background-color: white;
  color: black;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid white;
  margin-bottom: 1.25rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  width: 25%;
  min-width: 150px;
}

.hero-button:hover {
  background-color: #182700;
  color: white;
}

.hero-title-container {
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.hero-title-line {
  color: white;
}

.hero-title-line-green {
  color: #7ac52d;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: black;
  margin-bottom: 0.5rem;
}

.hero-paragraph {
  color: white;
  font-size: 1rem;
  max-width: 36rem;
  margin: 0 auto;
}

.hero-search-form {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  z-index: 50;
}

.hero-search-input {
  width: 100%;
  height: 2.75rem;
  padding: 0 1rem;
  padding-right: 3rem;
  border-radius: 9999px;
  background-color: white;
  color: black;
  border: 1px solid #90cf50;
  outline: none;
}

.hero-search-input::placeholder {
  color: #9ca3af;
}

.hero-search-button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: #90cf50;
  border: none;
  cursor: pointer;
  color: white;
}

.hero-right-logo {
  position: absolute;
  right: -70px;
  top: -5%;
  height: 100%;
}

.hero-right-logo-img {
  height: 115%;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
  .hero-section-exams {
    margin-top: 7rem;
    padding: 1rem 0;
    min-height: 220px;
  }

  .hero-container {
    flex-direction: column;
    padding: 0 1rem;
  }

  .hero-middle-content {
    width: 100%;
    margin-left: 0 !important;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-button {
    width: 100%;
    max-width: 200px;
  }

  .hero-left-image {
    display: none !important;
  }

  .hero-director-image {
    height: 12rem;
  }
}

.btn-register {
  background: #7ac52d;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-register:hover {
  background: #6bb024;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(122, 197, 45, 0.3);
}

.btn-submit {
  background: #182700;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #2d4a00;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(24, 39, 0, 0.3);
}

/* Form styles */
.form-control:focus {
  border-color: #7ac52d;
  box-shadow: 0 0 0 0.2rem rgba(122, 197, 45, 0.25);
}

.form-select:focus {
  border-color: #7ac52d;
  box-shadow: 0 0 0 0.2rem rgba(122, 197, 45, 0.25);
}

/* Card hover effects */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease;
}

/* Responsive utilities */
@media (max-width: 768px) {
  .page-content h1 {
    font-size: 2rem !important;
  }

  .page-content h2 {
    font-size: 1.75rem !important;
  }

  .card-body {
    padding: 1.5rem !important;
  }
}

/* AllExams Component Styles */
.all-exams-section {
  background: #f8f9fa;
  padding: 3rem 0;
}

.all-exams-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .all-exams-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
  }
}

.exam-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  height: 100%;
  max-height: 427px;
  margin: 1.5rem 0;
  padding-bottom: 1rem;
  transition: all 0.3s ease;
}

@media (min-width: 640px) {
  .exam-card {
    width: 320px;
  }
}

@media (min-width: 768px) {
  .exam-card {
    width: 340px;
  }
}

@media (min-width: 1024px) {
  .exam-card {
    width: 360px;
  }
}

.exam-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.exam-card-image {
  position: relative;
  width: 100%;
  height: 12rem;
}

@media (min-width: 640px) {
  .exam-card-image {
    height: 14rem;
  }
}

.exam-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}

.exam-card-label {
  position: absolute;
  left: 1rem;
  bottom: 0rem;
  background: white;
  width: 5rem;
  text-align: center;
  color: black;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: bold;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .exam-card-label {
    font-size: 1rem;
  }
}

.exam-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 1rem 0.5rem;
  flex: 1;
}

@media (min-width: 640px) {
  .exam-card-content {
    padding: 1rem 1.5rem 0.5rem;
  }
}

.exam-card-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: #182700;
}

@media (min-width: 640px) {
  .exam-card-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .exam-card-title {
    font-size: 1.5rem;
  }
}

.exam-card-description {
  font-size: 0.875rem;
  color: #868e8b;
  margin-bottom: 1rem;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .exam-card-description {
    font-size: 1rem;
  }
}

.exam-card-buttons {
  display: flex;
  gap: 0.5rem;
}

.exam-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #7ac52d;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.exam-btn-register {
  background: #7ac52d;
  color: black;
}

.exam-btn-register:hover {
  background: white;
  color: black;
  text-decoration: none;
}

.exam-btn-check {
  background: white;
  color: black;
}

.exam-btn-check:hover {
  background: #7ac52d;
  color: black;
  text-decoration: none;
}

.exam-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  overflow: hidden;
}

.exam-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.exam-card-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #e4f3d5 0%, #f8fff4 100%);
}

.exam-icon {
  width: 60px;
  height: 60px;
  background: #182700;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.exam-icon i {
  color: white;
  width: 30px;
  height: 30px;
}

.exam-card-header h3 {
  color: #182700;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.exam-card-body {
  padding: 2rem;
}

.exam-card-body h4 {
  color: #182700;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.exam-card-body p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.exam-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.exam-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #495057;
}

.exam-features li i {
  color: #7ac52d;
  width: 18px;
  height: 18px;
  margin-right: 0.75rem;
}

.exam-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-exam-register {
  background: #7ac52d;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-exam-register:hover {
  background: #6bb024;
  color: white;
  transform: translateY(-2px);
}

.btn-exam-check {
  background: white;
  color: #182700;
  border: 1px solid #182700;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-exam-check:hover {
  background: #182700;
  color: white;
  transform: translateY(-2px);
}

.exam-info-card {
  background: #e4f3d5;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.exam-info-card h3 {
  color: #182700;
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.exam-info-card h4 {
  color: #182700;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.exam-info-card h4:first-of-type {
  margin-top: 0;
}

.exam-info-card p {
  color: #6c757d;
  margin-bottom: 1rem;
}

.exam-info-card ul {
  color: #6c757d;
  padding-left: 1.25rem;
}

.exam-info-card ul li {
  margin-bottom: 0.25rem;
}

.btn-contact {
  background: white;
  color: #182700;
  border: 1px solid white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #182700;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(24, 39, 0, 0.3);
}

/* Responsive adjustments for exam cards */
@media (max-width: 992px) {
  .exam-actions {
    flex-direction: column;
  }

  .exam-card-header,
  .exam-card-body {
    padding: 1.5rem;
  }

  .exam-info-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .exam-card-header,
  .exam-card-body {
    padding: 1rem;
  }

  .exam-info-card {
    padding: 1rem;
  }

  .exam-icon {
    width: 50px;
    height: 50px;
  }

  .exam-icon i {
    width: 24px;
    height: 24px;
  }
}

/* About Page Specific Styles */

/* About Hero Bottom Navigation */
.about-hero-bottom {
  width: 100%;
  background-color: #bce296;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 576px) {
  .about-hero-bottom {
    height: 48px;
  }
}

@media (min-width: 992px) {
  .about-hero-bottom {
    height: 56px;
  }
}

.about-nav-container {
  width: 100%;
  overflow-x: auto;
}

.about-nav-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 0.5rem;
  gap: 0.5rem;
  margin: 0;
  list-style: none;
  font-size: 10px;
  white-space: nowrap;
}

@media (min-width: 576px) {
  .about-nav-list {
    padding: 0 1rem;
    gap: 1rem;
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .about-nav-list {
    gap: 1.5rem;
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .about-nav-list {
    padding: 0 2rem;
    gap: 2rem;
    font-size: 16px;
  }
}

.about-nav-link {
  color: black;
  font-weight: 600;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.about-nav-link:hover {
  text-decoration: underline;
  color: black;
}

/* About Component Container */
.about-component-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 6rem;
  color: black;
  scroll-behavior: smooth;
  padding: 0 1rem;
}

@media (min-width: 576px) {
  .about-component-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 992px) {
  .about-component-container {
    padding: 0 2rem;
  }
}

.about-section {
  width: 100%;
  max-width: 1150px;
  text-align: left;
  color: black;
  scroll-margin-top: 6rem;
}

.about-section-title {
  color: black;
  text-align: left;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
  .about-section-title {
    font-size: 1.5rem;
  }
}

.about-section-text {
  color: black;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .about-section-text {
    font-size: 1rem;
  }
}

.about-section-list {
  color: black;
  text-align: left;
  list-style-type: disc;
  margin-left: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .about-section-list {
    margin-left: 1.5rem;
    font-size: 1rem;
  }
}

.about-section-list li {
  margin-bottom: 0.25rem;
}

.about-section-ordered-list {
  color: black;
  text-align: left;
  list-style-type: decimal;
  margin-left: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 1rem;
}

@media (min-width: 576px) {
  .about-section-ordered-list {
    margin-left: 1.5rem;
    font-size: 1rem;
  }
}

.about-section-ordered-list li {
  margin-bottom: 0.75rem;
}

.about-director-name {
  font-weight: bold;
}

/* Smooth scrolling for the whole page */
html {
  scroll-behavior: smooth;
}

/* Contact Support Section Styles */
.contact-support-section {
  width: 100%;
  background-color: white;
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .contact-support-section {
    padding: 3rem 6rem;
  }
}

.contact-support-container {
  max-width: 1280px;
  width: 100%;
}

.contact-support-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .contact-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-support-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.support-card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  width: 370px;
  height: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 640px) {
  .support-card {
    padding: 2rem;
  }
}

.support-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.support-icon {
  margin-bottom: 1rem;
}

.support-icon-svg {
  width: 3rem;
  height: 3rem;
  color: #7ac52d;
}

.support-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.support-title {
  font-size: 1.25rem;
  color: black;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.support-description {
  color: #868e8b;
  font-size: 1rem;
  line-height: 1.5;
}

.support-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
  width: fit-content;
  border: 1px solid transparent;
}

.support-button-arrow {
  font-size: 1rem;
  font-weight: bold;
  color: black;
  margin-right: 0.25rem;
}

.support-button:hover {
  border: 1px solid #7ac52d;
  background-color: transparent;
  color: black;
  text-decoration: none;
}

.support-button-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* LandingNews Component Styles */
.landing-news-section {
  background: white;
  padding: 3rem 0;
}

.landing-news-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  padding: 0 1rem;
}

.news-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  max-width: 1104px;
  margin: 2.5rem auto;
}

@media (min-width: 768px) {
  .news-item {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
  
  .news-item.image-right {
    flex-direction: row-reverse;
  }
}

.news-image {
  flex-shrink: 0;
  width: 100%;
  height: 320px;
  background: transparent;
}

@media (min-width: 768px) {
  .news-image {
    width: 410px;
  }
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.375rem;
}

.news-content {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}

@media (min-width: 768px) {
  .news-content {
    width: 621px;
  }
}

.news-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: black;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .news-title {
    font-size: 1.5rem;
  }
}

.news-description {
  color: black;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.no-results-message {
  text-align: center;
  padding: 3rem 0;
}

.no-results-message .text-muted {
  color: #6c757d;
}

/* Responsive adjustments for news items */
@media (max-width: 767px) {
  .landing-news-container {
    padding: 0 0.5rem;
    gap: 2rem;
  }
  
  .news-item {
    margin: 1.5rem auto;
    gap: 1rem;
  }
  
  .news-image {
    height: 240px;
  }
  
  .news-title {
    font-size: 1.125rem;
  }
  
  .news-description {
    font-size: 0.9rem;
  }
}
