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

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

.page-index-security-commitment__hero {
  background: linear-gradient(135deg, #0047AB, #002882);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-security-commitment__hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  animation: page-index-security-commitment__bubble 10s infinite ease-in-out alternate;
}

.page-index-security-commitment__hero::after {
  content: '';
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 250px;
  height: 250px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  animation: page-index-security-commitment__bubble 12s infinite reverse ease-in-out;
}

@keyframes page-index-security-commitment__bubble {
  0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50% { transform: translate(20px, 20px) scale(1.1); opacity: 1; }
  100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
}

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

.page-index-security-commitment__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-index-security-commitment__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-index-security-commitment__section:last-of-type {
  border-bottom: none;
}

.page-index-security-commitment__section-title {
  font-size: 2.5em;
  color: #0047AB;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-index-security-commitment__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}

.page-index-security-commitment__text-content {
  margin-top: 30px;
  padding: 20px;
  background-color: #e6f0ff; /* Light blue background for text */
  border-left: 5px solid #0047AB;
  border-radius: 5px;
  color: #333;
  font-style: italic;
}

.page-index-security-commitment__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-security-commitment__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-security-commitment__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-index-security-commitment__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 71, 171, 0.2)); /* Shadow matching main color */
}

.page-index-security-commitment__feature-item h3 {
  font-size: 1.5em;
  color: #0047AB;
  margin-bottom: 15px;
}

.page-index-security-commitment__feature-item p {
  font-size: 1em;
  color: #666;
  text-align: center;
}

.page-index-security-commitment__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin-top: 30px;
  cursor: pointer;
}

.page-index-security-commitment__btn--primary {
  background-color: #FFD700;
  color: #0047AB; /* Dark blue text on gold button */
  border: 2px solid #FFD700;
}

.page-index-security-commitment__btn--primary:hover {
  background-color: #e6c200;
  color: #002882;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-index-security-commitment__btn--secondary {
  background-color: #0047AB;
  color: #FFD700; /* Gold text on dark blue button */
  border: 2px solid #0047AB;
}

.page-index-security-commitment__btn--secondary:hover {
  background-color: #002882;
  color: #ffe033;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 71, 171, 0.4);
}

.page-index-security-commitment__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  margin-top: 50px;
}

.page-index-security-commitment__section--conclusion ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-index-security-commitment__section--conclusion ul li {
  background-color: #e6f7ff;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 4px solid #0047AB;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-security-commitment__section--conclusion ul li strong {
  color: #0047AB;
}

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

  .page-index-security-commitment__hero-subtitle {
    font-size: 1.2em;
  }

  .page-index-security-commitment__section-title {
    font-size: 2em;
  }

  .page-index-security-commitment__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-index-security-commitment__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-security-commitment__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-security-commitment__hero-title {
    font-size: 2em;
  }

  .page-index-security-commitment__hero-subtitle {
    font-size: 1em;
  }

  .page-index-security-commitment__section-title {
    font-size: 1.8em;
  }

  .page-index-security-commitment__section p {
    font-size: 0.95em;
  }

  .page-index-security-commitment__feature-item h3 {
    font-size: 1.3em;
  }
}