/* =========================================
   SCIENTIFIC COUNCIL HERO
========================================= */

.hero-scientific {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 160px 20px 110px;
  min-height: 380px;

  background: linear-gradient(135deg, #0b2a45, #124a78);
  color: #ffffff;
  overflow: hidden;
}

/* Overlay effekt */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 70%);
  z-index: 1;
}

/* Container */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

/* Title */
.hero-scientific h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* Subtitle */
.hero-scientific p {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-scientific {
    padding: 120px 15px 80px;
  }

  .hero-scientific h1 {
    font-size: 1.9rem;
  }

  .hero-scientific p {
    font-size: 1rem;
  }
}