
.hero {
  background: linear-gradient(135deg, #00bcd4 0%, #2581eb 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.material-icons {
  color: white;
  font-size: 30px; /* You can also change the size */
}

.shield-icon {
  width: 80px;
  height: 80px;
  font-size: 40px;
  border: 3px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
  opacity: 0.95;
}

.hero .updated {
  font-size: 14px;
  opacity: 0.8;
}

/* Content Section */
.content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.intro-section {
  background: white;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  line-height: 1.8;
  color: #555;
}

/* Info box styling with scroll animation */
.asection {
  background: rgba(255, 255, 255, 0.792);
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}


.asection.visible {
  opacity: 1;
  transform: translateY(0);
}

.asection-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}

.asection-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00bbd498 0%, #2581eb4c 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.asection h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
}

.asection ul {
  list-style: none;
  padding: 0;
}

.asection li {
  padding: 12px 0 12px 30px;
  position: relative;
  line-height: 1.7;
  color: #555;
}

.asection li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
  font-size: 20px;
}

/* Staggered animation delays for multiple sections */
.asection :nth-of-type(2) {
  transition-delay: 0s;
}

.asection:nth-of-type(3) {
  transition-delay: 0.1s;
}

.asection-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--cyan-start), var(--cyan-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--white);
    color: var(--cyan-start);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--cyan-start);
    transform: translateY(-3px);
}