/* About Page Styles */
.about-content {
    padding: 20px 40px;
    background: linear-gradient(90deg, rgba(0,123,255,0.08) 0%, rgba(102,16,242,0.08) 100%);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: var(--ff-accent);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-align: center;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 900px) {
    .about-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Team Section */
.team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: var(--ff-accent);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
    justify-items: center;
}

.team-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,123,255,0.1) 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-family: var(--ff-accent);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-banner.tv-hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0,123,255,0.12) 0%, rgba(102,16,242,0.12) 100%);
  margin-bottom: 0;
}

.hero-banner.tv-hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6) saturate(1.1);
}

.hero-banner.tv-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-banner.tv-hero h1 {
  font-size: 2.8rem;
  font-family: var(--ff-accent);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.hero-banner.tv-hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.95);
}

@media (max-width: 900px) {
  .hero-banner.tv-hero {
      height: 200px;
  }
  .hero-banner.tv-hero h1 {
      font-size: 2rem;
  }
  .hero-banner.tv-hero p {
      font-size: 1rem;
  }
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

