/* style/blog-hero123-security-privacy.css */
.page-blog-hero123-security-privacy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Explicitly set for clarity, though body is white */
}

.page-blog-hero123-security-privacy__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background-color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.page-blog-hero123-security-privacy__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.page-blog-hero123-security-privacy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-hero123-security-privacy__hero-content {
  max-width: 900px;
  margin-top: 30px;
  padding: 0 20px;
}

.page-blog-hero123-security-privacy__hero-title {
  font-size: clamp(2em, 3.5vw, 3.2em); /* Use clamp for H1 */
  color: #017439;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-hero123-security-privacy__hero-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-blog-hero123-security-privacy__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-hero123-security-privacy__btn-primary,
.page-blog-hero123-security-privacy__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-hero123-security-privacy__btn-primary {
  background-color: #C30808; /* Custom color for Register/Login */
  color: #FFFF00; /* Custom font color for Register/Login */
  border: 2px solid #C30808;
}

.page-blog-hero123-security-privacy__btn-primary:hover {
  background-color: #a30606;
  border-color: #a30606;
}

.page-blog-hero123-security-privacy__btn-secondary {
  background-color: #FFFFFF;
  color: #017439;
  border: 2px solid #017439;
}

.page-blog-hero123-security-privacy__btn-secondary:hover {
  background-color: #017439;
  color: #FFFFFF;
}

.page-blog-hero123-security-privacy__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-blog-hero123-security-privacy__article {
  background-color: #FFFFFF;
  padding: 0;
  border-radius: 8px;
}

.page-blog-hero123-security-privacy__section-title {
  font-size: 2.2em;
  color: #017439;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.page-blog-hero123-security-privacy__sub-title {
  font-size: 1.6em;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-hero123-security-privacy p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #333333;
}

.page-blog-hero123-security-privacy ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-blog-hero123-security-privacy ul li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-blog-hero123-security-privacy__image-inline {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-blog-hero123-security-privacy__contact-list {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}

.page-blog-hero123-security-privacy__contact-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-blog-hero123-security-privacy__cta-block {
  background-color: #f5f5f5;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-blog-hero123-security-privacy__cta-title {
  font-size: 2em;
  color: #017439;
  margin-bottom: 15px;
}

.page-blog-hero123-security-privacy__cta-text {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

/* --- Responsive Styles --- */

/* Mobile-specific styles for screens up to 768px */
@media (max-width: 768px) {
  .page-blog-hero123-security-privacy {
    font-size: 16px;
    line-height: 1.6;
  }

  /* HERO Section */
  .page-blog-hero123-security-privacy__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 30px;
  }

  .page-blog-hero123-security-privacy__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

  .page-blog-hero123-security-privacy__hero-title {
    font-size: clamp(1.8em, 7vw, 2.5em); /* Adjust H1 size for smaller screens */
    margin-bottom: 10px;
  }

  .page-blog-hero123-security-privacy__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  /* Buttons and Button Containers */
  .page-blog-hero123-security-privacy__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100% !important; /* Ensure button container takes full width */
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-blog-hero123-security-privacy__btn-primary,
  .page-blog-hero123-security-privacy__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

  /* General Images and Containers */
  .page-blog-hero123-security-privacy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-hero123-security-privacy__content-area,
  .page-blog-hero123-security-privacy__article,
  .page-blog-hero123-security-privacy__cta-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-hero123-security-privacy__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-hero123-security-privacy__sub-title {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-hero123-security-privacy p,
  .page-blog-hero123-security-privacy ul li {
    font-size: 0.95em;
  }

  .page-blog-hero123-security-privacy__cta-title {
    font-size: 1.6em;
  }

  .page-blog-hero123-security-privacy__cta-text {
    font-size: 1em;
  }
}