body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: linear-gradient(to bottom, #fff0f5, #ffe4e1);
  color: #333;
}


main {
  padding-top: 80px; 
}


.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://cdn2.unrealengine.com/billboard-winterfest-sectionbg-1920x1080-34f15a817168.jpg') center/cover no-repeat;
  filter: blur(8px) brightness(0.6);
  transform: scale(1.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.8rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.hero p {
  font-size: 1.4rem;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}


.sponsors {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

.sponsors h2 {
  font-size: 2.2rem;
  margin-bottom: 48px;
  color: #444;
}

.sponsor-track {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.sponsor-track img {
  height: 80px;
  margin: 0 32px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.sponsor-track img:hover {
  transform: scale(1.1);
}


.sponsor-track.has-many {
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.apply-section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
}

.apply-section h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: #c2185b;
}

.apply-section p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #444;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.btn-apply {
  display: inline-block;
  background: #2196f3;
  color: white;
  padding: 18px 60px;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(33,150,243,0.3);
}

.btn-apply:hover {
  background: #1976d2;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(33,150,243,0.4);
}


@media (max-width: 768px) {
  .hero h1 { font-size: 2.8rem; }
  .hero p { font-size: 1.2rem; }
  .sponsors { padding: 60px 20px; }
  .apply-section { padding: 80px 20px; }
}


.related-services {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.related-services h2 {
  font-size: 2.2rem;
  margin-bottom: 48px;
  color: #444;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}

.service-item img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  padding: 20px;
  border-radius: 12px; 
  background: #f8f8f8;
}

.service-item a {
  display: block;
  text-decoration: none;
}