/* style/index-safety-compliance.css */
.page-index-safety-compliance {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

/* Hero Section */
.page-index-safety-compliance__hero {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Adjusted gradient for better contrast */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-safety-compliance__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-safety-compliance__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  color: #e0e0e0;
}

.page-index-safety-compliance__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000000; /* Black text for high contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-safety-compliance__hero-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-index-safety-compliance__hero-image {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: auto;
  opacity: 0.2;
  z-index: 0;
}

/* General Section Styling */
.page-index-safety-compliance__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-safety-compliance__section--alt-bg {
  background-color: #e9ecef;
}

.page-index-safety-compliance__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Primary blue */
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-safety-compliance__subsection-title {
  font-size: 1.8em;
  color: #007BFF; /* Primary blue */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-safety-compliance__text-content {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #495057;
}

.page-index-safety-compliance__inline-link {
  color: #007BFF;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-safety-compliance__inline-link:hover {
  color: #0056b3;
}

/* Features Section */
.page-index-safety-compliance__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-safety-compliance__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-safety-compliance__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-index-safety-compliance__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.page-index-safety-compliance__feature-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-index-safety-compliance__feature-description {
  font-size: 1em;
  color: #6c757d;
}

/* Compliance Info */
.page-index-safety-compliance__compliance-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-safety-compliance__compliance-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-safety-compliance__compliance-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-index-safety-compliance__compliance-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.page-index-safety-compliance__compliance-title {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-index-safety-compliance__compliance-description {
  font-size: 0.95em;
  color: #6c757d;
}

.page-index-safety-compliance__cta-button {
  display: inline-block;
  background-color: #007BFF; /* Primary blue button */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-safety-compliance__cta-button:hover {
  background-color: #0056b3; /* Darker blue on hover */
  transform: translateY(-3px);
}

.page-index-safety-compliance__image-full-width {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-index-safety-compliance__list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-index-safety-compliance__list li {
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.05em;
  color: #495057;
}

/* Data Protection */
.page-index-safety-compliance__data-protection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-safety-compliance__data-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-safety-compliance__data-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-index-safety-compliance__data-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.page-index-safety-compliance__data-title {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-index-safety-compliance__data-description {
  font-size: 0.95em;
  color: #6c757d;
}

/* FAQ Section */
.page-index-safety-compliance__faq {
  padding: 60px 0;
  text-align: center;
}

.page-index-safety-compliance__faq-item {
  background-color: #ffffff;
  margin: 0 auto 20px auto;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  text-align: left;
}

.page-index-safety-compliance__faq-question {
  font-size: 1.3em;
  color: #007BFF;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-safety-compliance__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  font-weight: bold;
}

.page-index-safety-compliance__faq-item.active .page-index-safety-compliance__faq-question::after {
  content: '-';
}

.page-index-safety-compliance__faq-answer {
  font-size: 1em;
  color: #495057;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-index-safety-compliance__faq-item.active .page-index-safety-compliance__faq-answer {
  display: block;
}

/* Call to Action Section */
.page-index-safety-compliance__call-to-action {
  background: linear-gradient(135deg, #007BFF, #FFD700);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-index-safety-compliance__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-index-safety-compliance__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-safety-compliance__hero-title {
    font-size: 2.5em;
  }
  .page-index-safety-compliance__hero-description {
    font-size: 1.1em;
  }
  .page-index-safety-compliance__section-title {
    font-size: 2em;
  }
  .page-index-safety-compliance__hero-image {
    width: 200px;
    bottom: -30px;
    right: -30px;
  }
}

@media (max-width: 768px) {
  .page-index-safety-compliance__hero {
    padding: 60px 0;
  }
  .page-index-safety-compliance__hero-title {
    font-size: 2em;
  }
  .page-index-safety-compliance__hero-description {
    font-size: 1em;
  }
  .page-index-safety-compliance__hero-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-index-safety-compliance__section {
    padding: 40px 0;
  }
  .page-index-safety-compliance__section-title {
    font-size: 1.8em;
  }
  .page-index-safety-compliance__features, 
  .page-index-safety-compliance__compliance-info, 
  .page-index-safety-compliance__data-protection {
    grid-template-columns: 1fr;
  }
  .page-index-safety-compliance__cta-title {
    font-size: 2.2em;
  }
  .page-index-safety-compliance__cta-description {
    font-size: 1.1em;
  }
  .page-index-safety-compliance__hero-image {
    display: none; /* Hide on smaller screens */
  }
}

@media (max-width: 480px) {
  .page-index-safety-compliance__hero-title {
    font-size: 1.8em;
  }
  .page-index-safety-compliance__hero-description {
    font-size: 0.9em;
  }
  .page-index-safety-compliance__section-title {
    font-size: 1.5em;
  }
  .page-index-safety-compliance__faq-question {
    font-size: 1.1em;
  }
  .page-index-safety-compliance__faq-answer {
    font-size: 0.9em;
  }
  .page-index-safety-compliance__cta-title {
    font-size: 1.8em;
  }
  .page-index-safety-compliance__cta-description {
    font-size: 1em;
  }
  .page-index-safety-compliance__container {
    padding: 0 15px;
  }
}