body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0d0d0d;
  color: #f5f5f5;
}

.hero {
  position: relative;
  background: url('assets/img/background.jpeg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #ff6b6b;
}

.subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn.primary {
  background-color: #ff6b6b;
  color: white;
}

.btn.secondary {
  background-color: #333;
  color: #fff;
  border: 1px solid #555;
}

.btn:hover {
  opacity: 0.9;
}

/* Divider */
.divider {
  border: 0;
  height: 1px;
  background: #333;
  margin: 0;
}

/* Safety Section */
.safety-section {
  background-color: #121212;
  padding: 4rem 2rem;
  text-align: center;
}

.section-title {
  color: #f5f5f5;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.safety-item {
  background-color: #1e1e1e;
  padding: 2rem;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.safety-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.safety-item img {
  width: 40px;
  height: 40px;
  filter: brightness(0.9) invert(1);
}

.safety-item h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0;
}

.safety-item p {
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 0.5rem;
}

/* Notification styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  background: #ff6b6b;
  color: white;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  animation: slideIn 0.3s, fadeOut 0.5s 2.5s forwards;
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}