.page-hero {
  padding: 120px 0;
  background: url("../images/Scene 1.png") no-repeat center;
  background-size: cover;
  color: white;
  height: 80vh;
  align-items: center;
  display: flex;
  align-content: center;
}
.page-hero .about-block {
  position: relative;
  z-index: 1;
  height: auto;
  background-color: rgba(255, 255, 255, 0.7);
  width: 50%;
  padding:1em;
}

.page-hero::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-color: rgba(2, 32, 105, 0.5); */
}
.page-hero h1 {
  font-weight: bold !important;
  font-size: 3rem;
  color: rgba(14, 43, 99, 1);
}

.page-hero .lead-2 {
  font-size: 18px;
}
.btn-apply {
  background-color: rgba(0, 79, 159, 1);
  color: white;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-apply:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}
.section {
  padding: 80px 0;
}

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.section-bg {
  background-color: var(--background-color);
}

.partner-logo {
  max-height: 7rem;
  /* filter: grayscale(100%);
  transition: all 0.3s ease; */
}

#about .img-fluid {
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.prize-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 40px;
  text-align: center;
  background-color: white;
  transition: all 0.3s ease;
}
.prize-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.prize-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.prize-card h3 {
  color: var(--primary-color);
}

.winner-card {
  text-align: center;
}
.winner-card img {
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-section {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}
.cta-section .btn-apply {
  background-color: white;
  color: var(--primary-color);
}
.cta-section .btn-apply:hover {
  background-color: var(--secondary-color);
  color: white;
}

.faq-section .accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}
.faq-section .accordion-button {
  font-weight: 600;
  color: var(--primary-color);
}
.faq-section .accordion-button:focus {
  box-shadow: none;
}
.faq-section .accordion-button:not(.collapsed) {
  background-color: var(--secondary-color);
  color: white;
}

@media (max-width: 1024px) {
  .page-hero .about-block {
    font-size: 0.9rem;

    width: 80%;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .page-hero .lead {
    font-size: 1rem;
  }

  .page-hero .lead-2 {
    font-size: 0.9rem;
  }
  .btn-apply {
    padding: 10px 20px; /* Smaller button padding */
    font-size: 0.9rem;
  }
}

