.page-resources-security-system {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-resources-security-system__heading {
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  font-weight: bold;
}

.page-resources-security-system__subtitle {
  text-align: center;
  font-size: 1.2em;
  color: #555;
  margin-bottom: 30px;
}

.page-resources-security-system__text {
  font-size: 1em;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-security-system__button,
.page-resources-security-system__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-resources-security-system__button:hover,
.page-resources-security-system__cta-button:hover {
  background: linear-gradient(45deg, #0056b3, #007bff);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-security-system__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

/* Hero Section */
.page-resources-security-system .hero-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  overflow: hidden;
}

.page-resources-security-system .hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-security-system .hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-resources-security-system__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  font-weight: bold;
}

.page-resources-security-system .hero-image {
  margin-top: 40px;
  width: 100%;
  max-width: 800px; /* Adjust based on desired image size */
}

.page-resources-security-system .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Introduction Section */
.page-resources-security-system .introduction-section {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}

.page-resources-security-system .introduction-section .page-resources-security-system__text {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

/* Key Features Section */
.page-resources-security-system .key-features-section {
  padding: 80px 0;
  background-color: #f0f4f7;
}

.page-resources-security-system__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-security-system__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-security-system__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-security-system__feature-icon {
  width: 150px; /* Minimum 200x200 requirement met by setting size */
  height: 150px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-security-system__card-title {
  color: #007bff;
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: bold;
}

/* CTA Section */
.page-resources-security-system .cta-section {
  padding: 80px 0;
  background: linear-gradient(90deg, #007bff, #ffc107);
  text-align: center;
  color: #ffffff;
}

.page-resources-security-system .cta-section .page-resources-security-system__heading {
  color: #ffffff;
  margin-bottom: 20px;
}

.page-resources-security-system .cta-section .page-resources-security-system__text {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* FAQ Section */
.page-resources-security-system .faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-resources-security-system__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #007bff;
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #0056b3;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #333;
  border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px 25px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  content: '−'; /* Change to minus sign */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-security-system__title {
    font-size: 3em;
  }
  .page-resources-security-system__heading {
    font-size: 2em;
  }
  .page-resources-security-system__feature-icon {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .page-resources-security-system .hero-section {
    padding: 60px 0;
  }
  .page-resources-security-system .hero-container {
    padding: 0 15px;
  }
  .page-resources-security-system__title {
    font-size: 2.5em;
  }
  .page-resources-security-system__subtitle {
    font-size: 1em;
  }
  .page-resources-security-system__heading {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-security-system__button,
  .page-resources-security-system__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-security-system__cta-button--large {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-resources-security-system__features-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-security-system__feature-card {
    padding: 25px;
  }
  .page-resources-security-system__feature-icon {
    width: 100px;
    height: 100px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-security-system__title {
    font-size: 2em;
  }
  .page-resources-security-system__heading {
    font-size: 1.5em;
  }
  .page-resources-security-system__button,
  .page-resources-security-system__cta-button {
    width: 100%;
    margin-top: 15px;
  }
  .page-resources-security-system .hero-image {
    margin-top: 30px;
  }
}