/* style/safety-regulations.css */
.page-safety-regulations {
  font-family: 'Arial', sans-serif;
  color: #f5e6d0; /* Light text for dark backgrounds */
  background-color: #0A192F;
  line-height: 1.6;
}

.page-safety-regulations__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-safety-regulations__container--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-safety-regulations__container--grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-safety-regulations__container--reversed .page-safety-regulations__image-block {
    order: 2;
  }
  .page-safety-regulations__container--reversed .page-safety-regulations__content-block {
    order: 1;
  }
}

.page-safety-regulations__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a6b 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-safety-regulations__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,security,network,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-safety-regulations__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.page-safety-regulations__hero-description {
  font-size: 1.2em;
  color: #c0c0c0;
  max-width: 800px;
  margin: 0 auto 30px auto;
  position: relative;
  z-index: 1;
}

.page-safety-regulations__section {
  padding: 80px 0;
}

.page-safety-regulations__section--dark-bg {
  background-color: #1a2a47;
}

.page-safety-regulations__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: left;
  line-height: 1.3;
}

.page-safety-regulations__subsection-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 4px solid #FFD700;
  padding-left: 15px;
}

.page-safety-regulations p {
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-safety-regulations ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-safety-regulations ul li {
  margin-bottom: 10px;
}

.page-safety-regulations__image-block {
  text-align: center;
}

.page-safety-regulations__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.page-safety-regulations__image:hover {
  transform: translateY(-5px);
}

.page-safety-regulations__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-safety-regulations__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-safety-regulations__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-safety-regulations__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-safety-regulations__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-safety-regulations__btn--tertiary {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-safety-regulations__btn--tertiary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-safety-regulations__cta-content {
  text-align: center;
  background-color: #1a2a47;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-safety-regulations__cta-content .page-safety-regulations__section-title {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page-safety-regulations__cta-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-safety-regulations__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-safety-regulations__hero-title {
    font-size: 2.5em;
  }
  .page-safety-regulations__section-title {
    font-size: 2em;
  }
  .page-safety-regulations__subsection-title {
    font-size: 1.5em;
  }
  .page-safety-regulations__section {
    padding: 60px 0;
  }
  .page-safety-regulations__hero-section {
    padding: 80px 0;
  }
  .page-safety-regulations__cta-content {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .page-safety-regulations__hero-title {
    font-size: 2em;
  }
  .page-safety-regulations__hero-description {
    font-size: 1em;
  }
  .page-safety-regulations__section-title {
    font-size: 1.8em;
  }
  .page-safety-regulations__subsection-title {
    font-size: 1.3em;
  }
  .page-safety-regulations__btn {
    padding: 12px 25px;
    margin: 5px;
    font-size: 0.9em;
  }
  .page-safety-regulations__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}