* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #dbe9f8;
  color: #000000;
}

/* HERO */
.quick-hero {
  height: 70vh;
  background: url("https://images.unsplash.com/photo-1558788353-f76d92427f16") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 36, 48, 0.75);
}

.hero-content {
  position: relative;
  text-align: center;
  animation: fadeIn 1s ease;
}

.hero-content h1 {
  font-size: 3rem;
  color: #000000;
}

.hero-content p {
  font-size: 1.2rem;
  color: #000000;
  margin-top: 10px;
}

/* INTRO */
.quick-intro {
  max-width: 800px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.quick-intro h2 {
  color: #000000;
  font-size: 2rem;
  margin-bottom: 15px;
}

.quick-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: black;
}

/* STEPS */
.quick-steps {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

.step-card {
  display: flex;
  gap: 25px;
  background:#bad9f3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.85);
}

.step-card img {
  width: 280px;
  height: 220px;
  object-fit: cover;
}

.step-info {
  padding: 20px;
}

.step-info h3 {
  color: #000000;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.step-info p {
  font-size: 1.05rem;
  line-height: 1.7;
}

/* SAFETY */
.quick-safety {
  background: #b5e7f3;
  padding: 60px 20px;
}

.quick-safety h2 {
  text-align: center;
  color: #000000;
  margin-bottom: 30px;
}

.quick-safety ul {
  max-width: 700px;
  margin: auto;
  list-style: none;
}

.quick-safety li {
  background:#bad9f3;
  padding: 18px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.quick-safety li:hover {
  background: #97c3e8;
}

.quick-safety li span {
  display: block;
  font-size: 1.1  rem;
  color: #000000;
  margin-top: 8px;
  max-height: 0;
  transition: max-height 0.4s ease; 
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .step-card {
    flex-direction: column;
  }

  .step-card img {
    width: 100%;
    height: 200px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}
