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

.page-security-fund-safety__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-security-fund-safety__hero {
  background: linear-gradient(135deg, #003366 0%, #003366 60%, #FFCC00 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-security-fund-safety__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: rotate(45deg);
}

.page-security-fund-safety__hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  transform: rotate(-30deg);
}

.page-security-fund-safety__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Adjusted for contrast */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-security-fund-safety__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0; /* Adjusted for contrast */
}

.page-security-fund-safety__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-security-fund-safety__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
}

.page-security-fund-safety__btn--primary {
  background-color: #FFCC00;
  color: #003366; /* High contrast */
  border: 2px solid #FFCC00;
}

.page-security-fund-safety__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-security-fund-safety__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-security-fund-safety__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366; /* High contrast */
  transform: translateY(-2px);
}

.page-security-fund-safety__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* General Sections */
.page-security-fund-safety__section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-security-fund-safety__section:last-of-type {
  border-bottom: none;
}

.page-security-fund-safety__section--intro {
  background-color: #f8f8f8;
}

.page-security-fund-safety__section-title {
  font-size: 2.2em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-security-fund-safety__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-security-fund-safety__section p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}

.page-security-fund-safety__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.15);
}

.page-security-fund-safety__image--responsive {
  max-width: 90%;
}

.page-security-fund-safety__image--small {
  max-width: 300px;
}

/* Feature Grid */
.page-security-fund-safety__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-security-fund-safety__feature-item {
  background-color: #f0f7ff; /* Lighter shade of main color */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 51, 102, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #FFCC00;
}

.page-security-fund-safety__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 51, 102, 0.15);
}

.page-security-fund-safety__feature-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-security-fund-safety__feature-item p {
  font-size: 1em;
  color: #444;
  text-align: left;
}

/* Process Steps */
.page-security-fund-safety__process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-security-fund-safety__step-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  position: relative;
  text-align: center;
}

.page-security-fund-safety__step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #003366;
  border-radius: 50%;
  border: 3px solid #FFCC00;
  z-index: 1;
}

.page-security-fund-safety__step-item:nth-child(1)::before { content: '1'; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.5em; }
.page-security-fund-safety__step-item:nth-child(2)::before { content: '2'; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.5em; }
.page-security-fund-safety__step-item:nth-child(3)::before { content: '3'; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.5em; }
.page-security-fund-safety__step-item:nth-child(4)::before { content: '4'; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.5em; }

.page-security-fund-safety__step-title {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 15px;
  margin-top: 30px; /* Space for the number icon */
  font-weight: bold;
}

.page-security-fund-safety__step-item p {
  font-size: 0.95em;
  color: #555;
  text-align: center;
}

/* List Styles */
.page-security-fund-safety__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-security-fund-safety__list li {
  background-color: #e6f0ff; /* Light blue */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #333;
  display: flex;
  align-items: flex-start;
  border-left: 4px solid #003366;
}

.page-security-fund-safety__list li strong {
  color: #003366;
  margin-right: 8px;
}

.page-security-fund-safety__list li::before {
  content: '✓';
  color: #FFCC00;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-security-fund-safety__list a {
  color: #003366;
  text-decoration: underline;
}

.page-security-fund-safety__list a:hover {
  color: #FFCC00;
}

/* Conclusion Section */
.page-security-fund-safety__section--conclusion {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-security-fund-safety__section--conclusion .page-security-fund-safety__section-title {
  color: #FFCC00;
}

.page-security-fund-safety__section--conclusion .page-security-fund-safety__section-title::after {
  background-color: #fff;
}

.page-security-fund-safety__section--conclusion p {
  color: #e0e0e0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.page-security-fund-safety__section--conclusion a {
  color: #FFCC00;
  font-weight: bold;
  text-decoration: underline;
}

.page-security-fund-safety__section--conclusion a:hover {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-security-fund-safety__hero-title {
    font-size: 2em;
  }

  .page-security-fund-safety__hero-description {
    font-size: 1em;
  }

  .page-security-fund-safety__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-security-fund-safety__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-security-fund-safety__section-title {
    font-size: 1.8em;
  }

  .page-security-fund-safety__feature-grid,
  .page-security-fund-safety__process-steps {
    grid-template-columns: 1fr;
  }

  .page-security-fund-safety__feature-item,
  .page-security-fund-safety__step-item {
    padding: 20px;
  }

  .page-security-fund-safety__list li {
    font-size: 0.95em;
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .page-security-fund-safety__hero-title {
    font-size: 1.6em;
  }

  .page-security-fund-safety__section-title {
    font-size: 1.5em;
  }

  .page-security-fund-safety__btn {
    width: 90%;
  }
}