.secondaryTitleOfLanding {
  font-family: "BPGBannerCaps";
  font-size: 28px;
}

@media screen and (max-width: 1160px) {
  .secondaryTitleOfLanding {
    font-size: 20px;
  }
}

.info-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-item {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.info-section h2 {
  font-family: "BPGBannerCaps";
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

.info-section h3 {
  font-size: 24px;
  margin-top: 25px;
  margin-bottom: 10px;
}

.info-section p {
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 18px;
  font-family: "BPGGlaho";
}

.info-section ul {
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 15px;
  padding: 0;
  font-size: 18px;
  font-family: "BPGGlaho";
}

.info-section li {
  margin-bottom: 5px;
}

.info-section strong {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .info-section {
    padding: 10px;
    gap: 20px;
  }

  .info-item {
    padding: 20px;
  }

  .info-section h2 {
    font-size: 28px;
  }

  .info-section h3 {
    font-size: 20px;
  }

  .info-section p {
    font-size: 15px;
  }
}

.partners-logos {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

@media screen and (max-width: 1000px) {
  .partners-logos {
    flex-wrap: wrap;
  }
}

.partners-logos img {
  display: block;
  flex: 1;
  max-width: 150px;
}

/* Banner Container Styles with SVG Border */
:root {
  --border-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M1 20 L20 1 L40 1 L59 20 L59 40 L40 59 L20 59 L1 40 Z' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
}

.banner-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 20px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5px;
  border: 20px solid transparent;
  border-image-source: var(--border-svg);
  border-image-slice: 20;
  background-color: transparent;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img {
  max-height: 100px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.divider {
  width: 2px;
  height: 40px;
  background-color: #fff;
  margin: 0 10px;
}

.mobile-divider {
  display: none;
}

@media (max-width: 768px) {
  .banner-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .divider {
    display: none;
  }

  .mobile-divider {
    display: block;
    width: 100px;
    height: 1px;
    background-color: #ccc;
    margin: 10px auto;
  }

  .logo-img {
    max-height: 100px;
  }
}

@media (min-width: 769px) {
  .mobile-divider {
    display: none;
  }
}
