:root {
  --brand-red: #dc3545;
  --brand-dark: #0f172a;
  --brand-bg: #fcfdfe;
}

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background-color: var(--brand-bg);
  color: #334155;
}

/* --- Hero Section --- */
.hero-special {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%), url('assets/hero-bg.jpg');
  background-size: cover;
  padding: 100px 0 80px 0;
  position: relative;
}

/* --- Feature Cards --- */
.feature-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(220, 53, 69, 0.3);
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(220, 53, 69, 0.08);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

/* --- Partnership Section --- */
.partnership-box {
  background-color: #f8fafc;
  border-left: 5px solid var(--brand-red);
  padding: 2rem;
  border-radius: 0 12px 12px 0;
}

/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-pill {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--brand-red);
  text-transform: uppercase;
  background: rgba(220, 53, 69, 0.06);
  padding: 6px 18px;
  border-radius: 60px;
  font-weight: 700;
  margin-bottom: 1rem;
}
