/* style/blog-hi79-official-site-security-review.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --login-button-color: #EA7C07;
}

/* Base styles for the page content */
.page-blog-hi79-official-site-security-review {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--secondary-color);
}

/* Hero Section */
.page-blog-hi79-official-site-security-review__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  background-color: #f0f8ff; /* Light background for hero section */
  overflow: hidden;
}

.page-blog-hi79-official-site-security-review__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-blog-hi79-official-site-security-review__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-hi79-official-site-security-review__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-hi79-official-site-security-review__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-blog-hi79-official-site-security-review__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.page-blog-hi79-official-site-security-review__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* General Section Styling */
.page-blog-hi79-official-site-security-review__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-hi79-official-site-security-review__section-wrapper {
  background-color: var(--secondary-color);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: var(--text-dark);
}

.page-blog-hi79-official-site-security-review__dark-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-blog-hi79-official-site-security-review__dark-section .page-blog-hi79-official-site-security-review__section-title,
.page-blog-hi79-official-site-security-review__dark-section .page-blog-hi79-official-site-security-review__sub-title {
  color: var(--text-light);
}

.page-blog-hi79-official-site-security-review__light-bg {
  background-color: #f9f9f9;
  color: var(--text-dark);
}

.page-blog-hi79-official-site-security-review__section-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-hi79-official-site-security-review__sub-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-hi79-official-site-security-review__paragraph {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-blog-hi79-official-site-security-review__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

/* Buttons */
.page-blog-hi79-official-site-security-review__btn-primary,
.page-blog-hi79-official-site-security-review__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  max-width: 100%;
}

.page-blog-hi79-official-site-security-review__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-blog-hi79-official-site-security-review__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-blog-hi79-official-site-security-review__btn-secondary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-hi79-official-site-security-review__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-blog-hi79-official-site-security-review__btn-inline {
  margin-top: 15px;
  margin-right: 10px;
}

/* FAQ Section */
.page-blog-hi79-official-site-security-review__faq-list {
  margin-top: 30px;
}

.page-blog-hi79-official-site-security-review__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
  color: var(--text-dark);
}

.page-blog-hi79-official-site-security-review__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--primary-color);
}

.page-blog-hi79-official-site-security-review__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-hi79-official-site-security-review__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: var(--primary-color);
}

.page-blog-hi79-official-site-security-review__faq-answer {
  padding: 0 20px 15px;
  font-size: 0.95em;
  color: var(--text-dark);
}

.page-blog-hi79-official-site-security-review__faq-answer p {
  margin-bottom: 0;
}

.page-blog-hi79-official-site-security-review__faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Final CTA Section */
.page-blog-hi79-official-site-security-review__cta-final {
  text-align: center;
  padding: 50px 20px;
  background-color: #f0f8ff;
}

.page-blog-hi79-official-site-security-review__cta-final .page-blog-hi79-official-site-security-review__section-title {
  margin-bottom: 20px;
}

.page-blog-hi79-official-site-security-review__cta-final .page-blog-hi79-official-site-security-review__paragraph {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-hi79-official-site-security-review__hero-section {
    padding: 40px 15px;
  }

  .page-blog-hi79-official-site-security-review__main-title {
    font-size: 2.5em;
  }

  .page-blog-hi79-official-site-security-review__section-title {
    font-size: 1.8em;
  }

  .page-blog-hi79-official-site-security-review__sub-title {
    font-size: 1.3em;
  }

  .page-blog-hi79-official-site-security-review__content-area,
  .page-blog-hi79-official-site-security-review__section-wrapper {
    padding: 25px 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-hi79-official-site-security-review {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-hi79-official-site-security-review__hero-section {
    padding: 30px 10px;
    flex-direction: column;
  }

  .page-blog-hi79-official-site-security-review__main-title {
    font-size: 2em;
  }

  .page-blog-hi79-official-site-security-review__hero-description {
    font-size: 1em;
  }

  .page-blog-hi79-official-site-security-review__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .page-blog-hi79-official-site-security-review__btn-primary,
  .page-blog-hi79-official-site-security-review__btn-secondary,
  .page-blog-hi79-official-site-security-review a[class*="button"],
  .page-blog-hi79-official-site-security-review a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-hi79-official-site-security-review__cta-buttons,
  .page-blog-hi79-official-site-security-review__button-group,
  .page-blog-hi79-official-site-security-review__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-blog-hi79-official-site-security-review img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hi79-official-site-security-review__section,
  .page-blog-hi79-official-site-security-review__card,
  .page-blog-hi79-official-site-security-review__container,
  .page-blog-hi79-official-site-security-review__section-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-hi79-official-site-security-review__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-blog-hi79-official-site-security-review__section-title {
    font-size: 1.5em;
  }

  .page-blog-hi79-official-site-security-review__sub-title {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-blog-hi79-official-site-security-review__main-title {
    font-size: 1.8em;
  }

  .page-blog-hi79-official-site-security-review__section-title {
    font-size: 1.3em;
  }

  .page-blog-hi79-official-site-security-review__sub-title {
    font-size: 1.1em;
  }

  .page-blog-hi79-official-site-security-review__hero-description {
    font-size: 0.95em;
  }

  .page-blog-hi79-official-site-security-review__paragraph {
    font-size: 0.9em;
  }
}