body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

.network-banner {
  background-image: url('../images/poshed-18.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #ffffff;
  text-align: left;
  position: relative;
}

.network-content {
  max-width: 600px;
  padding-right: 5%;
}

.network-content h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 20px;
}

.network-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.subscribe-btn {
  background-color: #C52829;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #a41f20;
}
.video-hero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  overflow: hidden;
}

.video-bg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.highlighted-profiles {
  background-color: #0F0F0F;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.section-title {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 40px;
}

.card-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.bottom-row {
  justify-content: center;
}

.profile-card {
  background-color: #f2f2f2;
  border-radius: 6px;
  overflow: hidden;
  max-width: 300px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
}

.profile-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  color: #0B1E3C;
}

.card-content h3 {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.card-content p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #333;
}
.cta-banner {
  background-image: url('../images/24-24.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 250px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  position: relative;
  color: #fff;
}

.cta-content {
  max-width: 600px;
  margin-right: 5%;
}

.cta-content h2 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 25px;
}

.cta-button {
  background-color: #F1C40F;
  color: #000;
  font-weight: bold;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
    text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background-color: #d4a100;
}
/* Responsive */
@media (max-width: 768px) {
  .network-banner {
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
  }

  .network-content {
    padding: 0;
  }

  .network-content h2 {
    font-size: 1.8rem;
  }

  .network-content p {
    font-size: 1rem;
  }
   .video-bg {
    height: auto;
    object-fit: contain;
  }

    .card-grid {
    flex-direction: column;
    align-items: center;
  }

  .profile-card {
    max-width: 90%;
  }
    .cta-banner {
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
  }

  .cta-content {
    margin: 0;
  }

  .cta-content h2 {
    font-size: 1.4rem;
  }

  .cta-button {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}
