
.page-container {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(135deg, #1A1A2E 0%, #2a3a5a 50%, #376cb8 100%);
  overflow: hidden;
}

.page-container::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #1A1A2E 0%, #2a3a5a 50%, #376cb8 100%);
  z-index: -2;
}




/* Page Header */
.page-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.breadcrumb {
  font-size: 0.9rem;
  color: rgba(247, 247, 247, 0.6);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--light);
}

.page-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 5rem;
  line-height: 1;
  color: var(--light);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.page-title .highlight {
  color: var(--primary);
}

.page-subtitle {
  font-size: 1.3rem;
  color: rgba(247, 247, 247, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Page Header */
.page-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.breadcrumb {
  font-size: 0.9rem;
  color: rgba(247, 247, 247, 0.6);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--light);
}

.page-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 5rem;
  line-height: 1;
  color: var(--light);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.page-title .highlight {
  color: var(--primary);
}

.page-subtitle {
  font-size: 1.3rem;
  color: rgba(247, 247, 247, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Section Titles */
.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.5rem;
  color: var(--light);
  margin-bottom: 1rem;
  letter-spacing: 1px;
  animation: fadeIn 1s ease-out 0.3s backwards;
}

.section-subtitle {
  color: rgba(247, 247, 247, 0.7);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  animation: fadeIn 1s ease-out 0.4s backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: rgba(197, 14, 25, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 14, 25, 0.3);
  padding: 4rem 3rem;
  border-radius: 20px;
  animation: fadeIn 1s ease-out 1s backwards;
}

.cta-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem;
  color: var(--light);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.cta-text {
  font-size: 1.2rem;
  color: rgba(247, 247, 247, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}