:root{
  --color-primary: #4B0082;
  --color-secondary: #800000;
  --color-accent: #FFD700;
  --color-bg: #fdfdff;
  --color-text: #1f2937;
}

body { 
  font-family: Arial, Helvetica, sans-serif; 
  background: var(--color-bg); 
  color: var(--color-text); 
  line-height: 1.6; 
}

.hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; 
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.hero-curve svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}
.hero-curve .shape-fill {
    fill: #ffffff;
}

.section-title { position: relative; display: inline-block; margin-bottom: 1rem; }
.section-title::after { 
  content: ''; 
  display: block; 
  width: 80px; 
  height: 6px; 
  background: var(--color-accent); 
  margin: 0.5rem auto 0; 
  border-radius: 10px; 
}

.stat-card { 
  transition: transform 0.3s ease; 
  border-radius: 20px; 
  overflow: hidden; 
  padding: 1.5rem;
  background-color: #fff; 
}
.stat-card:hover { transform: translateY(-5px); }

.news-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}
.news-card:hover .news-image { transform: scale(1.05); }

.news-image { 
  transition: transform 0.3s ease; 
  border-radius: 20px; 
  display: block;
  width: 100%;
}

.dept-card { 
  transition: all 0.3s ease; 
  border-radius: 20px; 
  overflow: hidden;
  background: #fff;
}
.dept-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); 
}