/* 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, #1A237E 0%, #394396 100%); /* Dark indigo to slightly lighter indigo */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-security-commitment-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 215, 0, 0.1); /* Gold accent */
  border-radius: 50%;
  filter: blur(80px);
}

.page-index-security-commitment-hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 215, 0, 0.15); /* Gold accent */
  border-radius: 50%;
  filter: blur(100px);
}

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

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

.page-index-security-commitment-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;
  border: none;
  cursor: pointer;
}

.page-index-security-commitment-btn-primary {
  background-color: #FFD700; /* Gold */
  color: #1A237E; /* Dark indigo */
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-index-security-commitment-btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

.page-index-security-commitment-btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-index-security-commitment-btn-secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-index-security-commitment-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-security-commitment-section.page-index-security-commitment-intro {
  background-color: #f0f2f5;
  text-align: center;
  padding: 40px 0;
}

.page-index-security-commitment-section.page-index-security-commitment-intro p {
  max-width: 900px;
  margin: 20px auto;
  font-size: 1.1em;
  color: #555;
}

.page-index-security-commitment-section-title {
  font-size: 2.5em;
  color: #1A237E; /* Dark indigo */
  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; /* Gold accent */
  border-radius: 2px;
}

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

.page-index-security-commitment-feature-card {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #1A237E;
}

.page-index-security-commitment-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index-security-commitment-feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
}

.page-index-security-commitment-card-title {
  font-size: 1.6em;
  color: #1A237E; /* Dark indigo */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index-security-commitment-feature-card p {
  color: #555;
  font-size: 1em;
  text-align: left;
}

.page-index-security-commitment-cta {
  background: linear-gradient(45deg, #1A237E, #394396);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  margin-bottom: 0;
  border-radius: 0;
}

.page-index-security-commitment-cta-content {
  max-width: 900px;
}

.page-index-security-commitment-cta .page-index-security-commitment-section-title {
  color: #FFD700;
  margin-bottom: 25px;
}

.page-index-security-commitment-cta .page-index-security-commitment-section-title::after {
  background-color: #FFD700;
}

.page-index-security-commitment-cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-index-security-commitment-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-security-commitment-faq {
  background-color: #fdfdfd;
  padding-bottom: 80px;
}

.page-index-security-commitment-faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-index-security-commitment-faq-question {
  font-size: 1.25em;
  color: #1A237E;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #f9f9f9;
  position: relative;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.page-index-security-commitment-faq-question:hover {
  background-color: #f0f2f5;
}

.page-index-security-commitment-faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-security-commitment-faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-security-commitment-faq-answer {
  padding: 0 25px;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-index-security-commitment-faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding: 15px 25px 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-security-commitment-title {
    font-size: 2.5em;
  }
  .page-index-security-commitment-subtitle {
    font-size: 1.1em;
  }
  .page-index-security-commitment-section-title {
    font-size: 2em;
  }
  .page-index-security-commitment-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-security-commitment-hero {
    padding: 60px 0;
  }
  .page-index-security-commitment-title {
    font-size: 2em;
  }
  .page-index-security-commitment-subtitle {
    font-size: 1em;
  }
  .page-index-security-commitment-section {
    padding: 40px 0;
  }
  .page-index-security-commitment-section-title {
    font-size: 1.8em;
  }
  .page-index-security-commitment-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-security-commitment-btn-secondary {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .page-index-security-commitment-title {
    font-size: 1.8em;
  }
  .page-index-security-commitment-subtitle {
    font-size: 0.9em;
  }
  .page-index-security-commitment-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-security-commitment-section-title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }
  .page-index-security-commitment-feature-card {
    padding: 20px;
  }
  .page-index-security-commitment-card-title {
    font-size: 1.4em;
  }
  .page-index-security-commitment-faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-index-security-commitment-faq-question::after {
    right: 20px;
  }
}