.page-reviews-safety-security {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e5e5e5; /* Light text for dark backgrounds */
}

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

.page-reviews-safety-security__hero {
  background-color: #1A202C;
  background-image: linear-gradient(135deg, #1A202C 0%, #3a4a66 100%);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-reviews-safety-security__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff; /* White text for dark hero background */
}

.page-reviews-safety-security__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #ccc; /* Slightly lighter white for subtitle */
}

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

.page-reviews-safety-security__section--white {
  background-color: #f8f8f8;
  color: #1A202C; /* Dark text for light background */
}

.page-reviews-safety-security__section--dark {
  background-color: #1A202C;
  color: #e5e5e5; /* Light text for dark background */
}

.page-reviews-safety-security__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  color: #FFD700; /* Gold for titles on dark background */
}

.page-reviews-safety-security__section--white .page-reviews-safety-security__section-title {
  color: #1A202C; /* Dark color for titles on white background */
}

.page-reviews-safety-security__subsection-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #FFD700; /* Gold for sub-titles on dark background */
}

.page-reviews-safety-security__section--white .page-reviews-safety-security__subsection-title {
  color: #1A202C; /* Dark color for sub-titles on white background */
}

.page-reviews-safety-security p {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-reviews-safety-security p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-reviews-safety-security p a:hover {
  text-decoration: underline;
}

.page-reviews-safety-security ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-reviews-safety-security ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-reviews-safety-security__highlight {
  color: #FFD700;
}

.page-reviews-safety-security__btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-reviews-safety-security__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

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

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

.page-reviews-safety-security__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-reviews-safety-security__cta-group {
  text-align: center;
  margin-top: 50px;
}

.page-reviews-safety-security__image-full {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-reviews-safety-security__hero-title {
    font-size: 2.5em;
  }

  .page-reviews-safety-security__hero-subtitle {
    font-size: 1em;
  }

  .page-reviews-safety-security__section-title {
    font-size: 2em;
  }

  .page-reviews-safety-security__subsection-title {
    font-size: 1.5em;
  }

  .page-reviews-safety-security__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-reviews-safety-security__section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-reviews-safety-security__hero-title {
    font-size: 2em;
  }

  .page-reviews-safety-security__hero-subtitle {
    font-size: 0.9em;
  }

  .page-reviews-safety-security__section-title {
    font-size: 1.8em;
  }

  .page-reviews-safety-security__subsection-title {
    font-size: 1.3em;
  }

  .page-reviews-safety-security__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }

  .page-reviews-safety-security__section {
    padding: 40px 0;
  }
}