/* Global Variables */
:root {
  --primary: #EB001B;
  --primary-dark: #C00016;
  --secondary: #1C085D;
  --text: #1F1F1F;
  --muted: #5F6475;
  --surface: #FFFFFF;
  --bg: #FDFCFD;
  --border: #E4E6EE;
  --radius: 20px;
  --shadow-soft: 0 20px 50px rgba(4, 6, 29, 0.08);
}

/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

section {
  width: 100%;
}

.section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
}

.section-heading i {
  color: var(--primary);
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 32px;
  text-align: center;
  width: 100%;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Unified Page Hero */
.page-hero {
  background: linear-gradient(135deg, #1C085D 0%, #EB001B 100%);
  color: white;
  padding: 100px 20px 60px;
  text-align: center;
}

.page-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .page-hero-content h1 {
    font-size: 2rem;
  }
}