:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #eef4ff 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  background-image: url('asu.jpg')
}

.hero-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 5rem;
  text-shadow: 2px 2px 4px #000000;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 14px;
}

.subtitle {
  font-size: 1.05rem;
  color: black;
  max-width: 650px;
  margin: 0 auto 28px;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 50px;
  background: white;
  border: 1px solid black;
  font-weight:700;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: white;
  color: var(--primary-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: var(--primary-dark);
}

.btn-secondary:hover {
  transform: translateY(-2px);
}

.section {
  padding: 70px 0;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 34px;
}

.section-heading h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-heading p {
  color: var(--muted);
}

.card-grid {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
  display: grid;
  gap: 18px;
}

.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0 0 18px;
}

.info-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.icon {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: white;
  font-weight: 700;
  margin-bottom: 0;
}

.info-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.info-card p {
  color: var(--muted);
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.info-card p {
  color: var(--muted);
}

.alt-section {
  background: rgba(255, 255, 255, 0.45);
}

.report-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
  display: grid;
  gap: 18px;
}

.report-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.report-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-number {
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: white;
  font-weight: 700;
}

.report-step h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.report-step p {
  color: var(--muted);
}

.contact-section {
  padding-top: 20px;
  padding-bottom: 80px;
}

.contact-card {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: white;
  text-align: center;
  border-radius: 28px;
  padding: 44px 28px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-card p {
  max-width: 640px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-card .btn-primary {
  background: var(--primary);
  color: white;
}

.contact-card .btn-primary:hover {
  background: var(--primary-dark);
}

@media (max-width: 900px) {
}

@media (max-width: 640px) {
  .hero {
    padding: 60px 0 50px;
  }

  .section {
    padding: 50px 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .report-step {
    flex-direction: column;
  }
}

.sigma {
  text-shadow: 2px 2px 4px #000000;
}