/* style/blog-ht368-official-security-and-reputation-analysis.css */

/* Global styles for this page content - ensures light text on dark body background */
.page-blog-ht368-official-security-and-reputation-analysis {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-ht368-official-security-and-reputation-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-ht368-official-security-and-reputation-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #0a0a0a; /* Match body background for seamless look */
  overflow: hidden;
}

.page-blog-ht368-official-security-and-reputation-analysis__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit hero image height */
  overflow: hidden;
  position: relative;
}

.page-blog-ht368-official-security-and-reputation-analysis__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-blog-ht368-official-security-and-reputation-analysis__hero-content {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  z-index: 10;
  margin-top: -150px; /* Pull content up over the image slightly for visual flow */
  color: #ffffff;
  max-width: 900px;
}

.page-blog-ht368-official-security-and-reputation-analysis__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-ht368-official-security-and-reputation-analysis__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-ht368-official-security-and-reputation-analysis__cta-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-blog-ht368-official-security-and-reputation-analysis__cta-button:hover {
  background-color: #1a7fb2;
  transform: translateY(-2px);
}

/* Content Area */
.page-blog-ht368-official-security-and-reputation-analysis__content-area {
  padding: 60px 0;
  background-color: #0a0a0a; /* Dark background for content */
  color: #ffffff; /* Light text for content */
}

.page-blog-ht368-official-security-and-reputation-analysis__section-title {
  font-size: 2.2rem;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  padding-top: 40px;
}

.page-blog-ht368-official-security-and-reputation-analysis__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
  color: #f0f0f0;
}

.page-blog-ht368-official-security-and-reputation-analysis__image-wrapper {
  margin: 40px auto;
  text-align: center;
  max-width: 1000px;
}

.page-blog-ht368-official-security-and-reputation-analysis__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-ht368-official-security-and-reputation-analysis__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* FAQ Section */
.page-blog-ht368-official-security-and-reputation-analysis__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background for FAQ */
  color: #ffffff;
}

.page-blog-ht368-official-security-and-reputation-analysis__faq-list {
  margin-top: 40px;
}

.page-blog-ht368-official-security-and-reputation-analysis__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-ht368-official-security-and-reputation-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #26A9E0;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.15rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For details/summary */
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.page-blog-ht368-official-security-and-reputation-analysis__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-ht368-official-security-and-reputation-analysis__faq-qtext {
  flex-grow: 1;
}

.page-blog-ht368-official-security-and-reputation-analysis__faq-toggle {
  font-size: 1.8rem;
  margin-left: 15px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-ht368-official-security-and-reputation-analysis__faq-item[open] .page-blog-ht368-official-security-and-reputation-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-ht368-official-security-and-reputation-analysis__faq-answer {
  padding: 20px 25px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #f0f0f0;
  font-size: 1rem;
  line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-ht368-official-security-and-reputation-analysis__hero-content {
    margin-top: -100px;
  }
  .page-blog-ht368-official-security-and-reputation-analysis__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-ht368-official-security-and-reputation-analysis__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-ht368-official-security-and-reputation-analysis {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-ht368-official-security-and-reputation-analysis__container {
    padding: 0 15px;
  }
  .page-blog-ht368-official-security-and-reputation-analysis__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-ht368-official-security-and-reputation-analysis__hero-content {
    margin-top: -80px;
    padding: 20px 15px;
  }
  .page-blog-ht368-official-security-and-reputation-analysis__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-blog-ht368-official-security-and-reputation-analysis__hero-description {
    font-size: 1rem;
  }
  .page-blog-ht368-official-security-and-reputation-analysis__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-ht368-official-security-and-reputation-analysis__content-area, 
  .page-blog-ht368-official-security-and-reputation-analysis__faq-section {
    padding: 40px 0;
  }
  .page-blog-ht368-official-security-and-reputation-analysis__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-top: 20px;
  }
  .page-blog-ht368-official-security-and-reputation-analysis__text-block {
    font-size: 1rem;
  }
  .page-blog-ht368-official-security-and-reputation-analysis__content-image,
  .page-blog-ht368-official-security-and-reputation-analysis__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-ht368-official-security-and-reputation-analysis__image-wrapper,
  .page-blog-ht368-official-security-and-reputation-analysis__hero-image-wrapper,
  .page-blog-ht368-official-security-and-reputation-analysis__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-ht368-official-security-and-reputation-analysis__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-blog-ht368-official-security-and-reputation-analysis__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .page-blog-ht368-official-security-and-reputation-analysis__hero-content {
    margin-top: -60px;
  }
  .page-blog-ht368-official-security-and-reputation-analysis__hero-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
  .page-blog-ht368-official-security-and-reputation-analysis__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .page-blog-ht368-official-security-and-reputation-analysis__section-title {
    font-size: 1.5rem;
  }
}