/* Safety App Page Styling */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

main img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto 40px;
  display: block;
  object-fit: cover;
}

main h1 {
  color: var(--primary);
  font-size: 2rem;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

main h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

main p {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.8;
}

main ul {
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
}

main li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--text-dark);
}

main hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 60px 0;
  border-radius: 2px;
}

main hr:last-of-type {
  margin-bottom: 20px;
}

.cta-section {
  padding: 50px 40px;
  text-align: center;
  margin-top: 0;
}

.cta-section h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-section p {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 500;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--text-light);
  padding: 15px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(32, 164, 243, 0.3);
}

.cta-button:hover {
  background-color: #1b9ae8;
  box-shadow: 0 6px 20px rgba(32, 164, 243, 0.4);
  transform: translateY(-2px);
}
