/* style/resources-thabet-one-security-features.css */

/* Base styles for the page content */
.page-resources-thabet-one-security-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Matches shared.css body background */
}

.page-resources-thabet-one-security-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-thabet-one-security-features__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Primary brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-thabet-one-security-features__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-resources-thabet-one-security-features__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  overflow: hidden;
  color: #ffffff;
}

.page-resources-thabet-one-security-features__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

.page-resources-thabet-one-security-features__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}

.page-resources-thabet-one-security-features__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Primary brand color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-thabet-one-security-features__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

/* Buttons */
.page-resources-thabet-one-security-features__btn-primary,
.page-resources-thabet-one-security-features__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-thabet-one-security-features__btn-primary {
  background-color: #FFD700; /* Primary brand color */
  color: #0a0a0a; /* Dark text for contrast */
  border: 2px solid #FFD700;
}

.page-resources-thabet-one-security-features__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-thabet-one-security-features__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Primary brand color */
  border: 2px solid #FFD700;
}

.page-resources-thabet-one-security-features__btn-secondary:hover {
  background-color: #FFD700;
  color: #0a0a0a; /* Dark text for contrast */
}

/* Section backgrounds */
.page-resources-thabet-one-security-features__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 60px 0;
}

.page-resources-thabet-one-security-features__light-bg {
  background-color: #1a1a1a;
  color: #f0f0f0;
  padding: 60px 0;
}

/* Intro Section */
.page-resources-thabet-one-security-features__intro-section .page-resources-thabet-one-security-features__text-block a {
  color: #FFD700;
  text-decoration: underline;
}

.page-resources-thabet-one-security-features__intro-section .page-resources-thabet-one-security-features__text-block a:hover {
  color: #e6c200;
}

/* Core Features Section */
.page-resources-thabet-one-security-features__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-thabet-one-security-features__feature-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter card background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff; /* Light text for contrast */
}

.page-resources-thabet-one-security-features__feature-item:hover {
  transform: translateY(-10px);
}

.page-resources-thabet-one-security-features__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #FFD700;
}

.page-resources-thabet-one-security-features__feature-title {
  font-size: 1.5em;
  color: #FFD700; /* Primary brand color */
  margin-bottom: 15px;
}

.page-resources-thabet-one-security-features__feature-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-resources-thabet-one-security-features__feature-description a {
  color: #FFD700;
  text-decoration: underline;
}

.page-resources-thabet-one-security-features__feature-description a:hover {
  color: #e6c200;
}

/* User Responsibility Section */
.page-resources-thabet-one-security-features__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-thabet-one-security-features__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #FFD700; /* Primary brand color accent */
  border-radius: 5px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-resources-thabet-one-security-features__list-item strong {
  color: #FFD700;
}

/* Support Section */
.page-resources-thabet-one-security-features__support-section .page-resources-thabet-one-security-features__text-block a {
  color: #FFD700;
  text-decoration: underline;
}

.page-resources-thabet-one-security-features__support-section .page-resources-thabet-one-security-features__text-block a:hover {
  color: #e6c200;
}

.page-resources-thabet-one-security-features__support-section .page-resources-thabet-one-security-features__btn-secondary {
  margin-top: 30px;
}

/* FAQ Section */
.page-resources-thabet-one-security-features__faq-list {
  margin-top: 40px;
}

.page-resources-thabet-one-security-features__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-resources-thabet-one-security-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #8B0000; /* Secondary brand color for question background */
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-resources-thabet-one-security-features__faq-question:hover {
  background-color: #6a0000;
}

.page-resources-thabet-one-security-features__faq-question h3 {
  margin: 0;
  color: #ffffff;
}

.page-resources-thabet-one-security-features__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-thabet-one-security-features__faq-item.active .page-resources-thabet-one-security-features__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-thabet-one-security-features__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: rgba(255, 255, 255, 0.03);
  color: #f0f0f0;
}

.page-resources-thabet-one-security-features__faq-item.active .page-resources-thabet-one-security-features__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-resources-thabet-one-security-features__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* CTA Section */
.page-resources-thabet-one-security-features__cta-section {
  text-align: center;
  padding: 80px 0;
}

.page-resources-thabet-one-security-features__cta-section .page-resources-thabet-one-security-features__text-block {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-resources-thabet-one-security-features__cta-section .page-resources-thabet-one-security-features__text-link {
  color: #FFD700;
  text-decoration: underline;
}

.page-resources-thabet-one-security-features__cta-section .page-resources-thabet-one-security-features__text-link:hover {
  color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-thabet-one-security-features__hero-title {
    font-size: 2.8em;
  }
  .page-resources-thabet-one-security-features__hero-description {
    font-size: 1.1em;
  }
  .page-resources-thabet-one-security-features__section-title {
    font-size: 2em;
  }
  .page-resources-thabet-one-security-features__feature-title {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-resources-thabet-one-security-features__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-thabet-one-security-features__hero-title {
    font-size: 2em;
  }
  .page-resources-thabet-one-security-features__hero-description {
    font-size: 1em;
  }
  .page-resources-thabet-one-security-features__hero-content {
    padding: 20px;
  }
  .page-resources-thabet-one-security-features__section-title {
    font-size: 1.8em;
  }
  .page-resources-thabet-one-security-features__text-block {
    font-size: 1em;
  }
  .page-resources-thabet-one-security-features__btn-primary,
  .page-resources-thabet-one-security-features__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-thabet-one-security-features__features-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-thabet-one-security-features__list-item {
    font-size: 1em;
  }
  .page-resources-thabet-one-security-features__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-resources-thabet-one-security-features__faq-answer {
    padding: 0 15px;
  }
  .page-resources-thabet-one-security-features__faq-item.active .page-resources-thabet-one-security-features__faq-answer {
    padding: 15px;
  }

  /* Mobile image responsiveness */
  .page-resources-thabet-one-security-features img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-thabet-one-security-features__section,
  .page-resources-thabet-one-security-features__card,
  .page-resources-thabet-one-security-features__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-thabet-one-security-features__hero-section,
  .page-resources-thabet-one-security-features__intro-section,
  .page-resources-thabet-one-security-features__core-features-section,
  .page-resources-thabet-one-security-features__user-responsibility-section,
  .page-resources-thabet-one-security-features__support-section,
  .page-resources-thabet-one-security-features__faq-section,
  .page-resources-thabet-one-security-features__cta-section {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-resources-thabet-one-security-features__hero-title {
    font-size: 1.8em;
  }
  .page-resources-thabet-one-security-features__hero-description {
    font-size: 0.9em;
  }
  .page-resources-thabet-one-security-features__section-title {
    font-size: 1.5em;
  }
  .page-resources-thabet-one-security-features__feature-title {
    font-size: 1.2em;
  }
}