/* style/resources-vic68-security-report.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f8f8;
  --bg-dark: #26A9E0;
  --border-color: #e0e0e0;
  --button-login: #EA7C07;
}

.page-resources-vic68-security-report {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark); /* Default text color for light body background */
  line-height: 1.6;
}

.page-resources-vic68-security-report__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-resources-vic68-security-report__container--center {
  max-width: 900px;
}

.page-resources-vic68-security-report__section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.page-resources-vic68-security-report__dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-resources-vic68-security-report__dark-bg .page-resources-vic68-security-report__section-title {
  color: var(--text-light);
}

.page-resources-vic68-security-report__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

/* Hero Section */
.page-resources-vic68-security-report__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text-light);
  text-align: center;
}

.page-resources-vic68-security-report__hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-resources-vic68-security-report__hero-content {
  margin-bottom: 40px;
  max-width: 800px;
}

.page-resources-vic68-security-report__hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.page-resources-vic68-security-report__hero-description {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-resources-vic68-security-report__hero-image-wrapper {
  width: 100%;
  max-width: 1000px; /* Adjust as needed */
  margin-top: 20px;
}

.page-resources-vic68-security-report__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/* Buttons */
.page-resources-vic68-security-report__cta-button,
.page-resources-vic68-security-report__btn-primary,
.page-resources-vic68-security-report__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-vic68-security-report__cta-button {
  background-color: var(--button-login);
  color: var(--text-light);
  border: 2px solid var(--button-login);
}

.page-resources-vic68-security-report__cta-button:hover {
  background-color: darken(var(--button-login), 10%);
  border-color: darken(var(--button-login), 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-vic68-security-report__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
  margin-top: 20px;
}

.page-resources-vic68-security-report__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-vic68-security-report__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-top: 20px;
}

.page-resources-vic68-security-report__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Content Layout */
.page-resources-vic68-security-report__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.page-resources-vic68-security-report__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-top: 40px;
}

.page-resources-vic68-security-report__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-resources-vic68-security-report__text-block {
  flex: 1;
}

.page-resources-vic68-security-report__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
}

.page-resources-vic68-security-report__image-block {
  flex: 1;
  min-width: 200px; /* Enforce minimum width */
  max-width: 100%;
}

.page-resources-vic68-security-report__section-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-resources-vic68-security-report__list {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 20px;
}

.page-resources-vic68-security-report__list li {
  margin-bottom: 10px;
  font-size: 17px;
}

/* FAQ Section */
.page-resources-vic68-security-report__faq-section {
  padding: 80px 0;
}

.page-resources-vic68-security-report__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-vic68-security-report__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-vic68-security-report__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-vic68-security-report__faq-question:hover {
  background: var(--bg-light);
  border-color: #d0d0d0;
}

.page-resources-vic68-security-report__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  pointer-events: none;
}

.page-resources-vic68-security-report__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-resources-vic68-security-report__faq-item.active .page-resources-vic68-security-report__faq-toggle {
  color: var(--button-login);
  transform: rotate(45deg); /* Change to X for active */
}

.page-resources-vic68-security-report__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: var(--secondary-color);
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px;
}

.page-resources-vic68-security-report__faq-item.active .page-resources-vic68-security-report__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

/* Conclusion Section */
.page-resources-vic68-security-report__conclusion-text {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-vic68-security-report__hero-title {
    font-size: 40px;
  }
  .page-resources-vic68-security-report__hero-description {
    font-size: 18px;
  }
  .page-resources-vic68-security-report__section-title {
    font-size: 28px;
  }
  .page-resources-vic68-security-report__content-grid,
  .page-resources-vic68-security-report__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-resources-vic68-security-report__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-resources-vic68-security-report__image-block {
    order: -1; /* Image appears above text on smaller screens for non-reversed sections */
  }
  .page-resources-vic68-security-report__content-wrapper--reverse .page-resources-vic68-security-report__image-block {
    order: 0; /* Image appears below text for reversed sections */
  }
}

@media (max-width: 768px) {
  .page-resources-vic68-security-report {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-vic68-security-report__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }
  .page-resources-vic68-security-report__hero-title {
    font-size: 32px;
  }
  .page-resources-vic68-security-report__hero-description {
    font-size: 16px;
  }
  .page-resources-vic68-security-report__section {
    padding: 40px 0;
  }
  .page-resources-vic68-security-report__section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .page-resources-vic68-security-report__container {
    padding: 0 15px;
  }

  /* Images responsive */
  .page-resources-vic68-security-report img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-vic68-security-report__image-block,
  .page-resources-vic68-security-report__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Buttons responsive */
  .page-resources-vic68-security-report__cta-button,
  .page-resources-vic68-security-report__btn-primary,
  .page-resources-vic68-security-report__btn-secondary {
    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;
    font-size: 16px;
  }

  /* FAQ responsive */
  .page-resources-vic68-security-report__faq-question {
    padding: 15px;
  }
  .page-resources-vic68-security-report__faq-question h3 {
    font-size: 16px;
  }
  .page-resources-vic68-security-report__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-resources-vic68-security-report__faq-answer {
    padding: 0 15px;
  }
  .page-resources-vic68-security-report__faq-item.active .page-resources-vic68-security-report__faq-answer {
    padding: 15px !important;
  }
}

/* Ensure min image size in content areas */
.page-resources-vic68-security-report__image-block img {
  min-width: 200px;
  min-height: 200px;
}

/* Contrast fixes */
.page-resources-vic68-security-report__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-resources-vic68-security-report__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}