/* style/resources-sumvip-apk-security-privacy.css */
.page-resources-sumvip-apk-security-privacy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#0a0a0a), so text should be light */
  background-color: transparent; /* Inherit from body/shared.css */
}

.page-resources-sumvip-apk-security-privacy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-sumvip-apk-security-privacy__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-sumvip-apk-security-privacy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-resources-sumvip-apk-security-privacy__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: -1;
}

.page-resources-sumvip-apk-security-privacy__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.page-resources-sumvip-apk-security-privacy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-resources-sumvip-apk-security-privacy__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* General Section Styling */
.page-resources-sumvip-apk-security-privacy__content-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Slightly lighter than body for contrast, but still dark */
  color: #ffffff;
}

.page-resources-sumvip-apk-security-privacy__content-section:nth-of-type(odd) {
  background-color: #1a1a1a; /* Alternating background for visual separation */
}

.page-resources-sumvip-apk-security-privacy__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 60px;
  color: #017439; /* Brand color for titles */
}

.page-resources-sumvip-apk-security-privacy__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
}

.page-resources-sumvip-apk-security-privacy__text-block h3 {
  font-size: 1.8em;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-resources-sumvip-apk-security-privacy__text-block p, 
.page-resources-sumvip-apk-security-privacy__text-block ul li {
  color: #f0f0f0;
}

.page-resources-sumvip-apk-security-privacy__text-block a {
  color: #017439; /* Brand color for links */
  text-decoration: underline;
}

.page-resources-sumvip-apk-security-privacy__text-block a:hover {
  color: #02a04e;
}

/* Feature Grid */
.page-resources-sumvip-apk-security-privacy__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-sumvip-apk-security-privacy__feature-item {
  background-color: #0a0a0a; /* Darker background for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.page-resources-sumvip-apk-security-privacy__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-sumvip-apk-security-privacy__feature-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-sumvip-apk-security-privacy__feature-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
}

.page-resources-sumvip-apk-security-privacy__feature-item p {
  color: #f0f0f0;
}

/* Feature Row (Image Left/Right) */
.page-resources-sumvip-apk-security-privacy__feature-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.page-resources-sumvip-apk-security-privacy__feature-row--reverse {
  flex-direction: row-reverse;
}

.page-resources-sumvip-apk-security-privacy__feature-image--left, 
.page-resources-sumvip-apk-security-privacy__feature-image--right {
  flex: 0 0 40%;
  max-width: 40%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-sumvip-apk-security-privacy__feature-text {
  flex: 1;
  color: #f0f0f0;
}

.page-resources-sumvip-apk-security-privacy__feature-text h3 {
  color: #017439;
  font-size: 1.8em;
  margin-bottom: 15px;
}

/* Checklist */
.page-resources-sumvip-apk-security-privacy__checklist {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-sumvip-apk-security-privacy__checklist li {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  background-color: #0a0a0a;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-sumvip-apk-security-privacy__checklist-icon {
  width: 200px;
  height: 200px;
  min-width: 200px;
  border-radius: 50%;
  margin-right: 20px;
  object-fit: cover;
  background-color: #017439;
  padding: 10px;
}

.page-resources-sumvip-apk-security-privacy__checklist li h3 {
  font-size: 1.3em;
  color: #017439;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-sumvip-apk-security-privacy__checklist li p {
  color: #f0f0f0;
}

/* Contact Info */
.page-resources-sumvip-apk-security-privacy__contact-info {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-resources-sumvip-apk-security-privacy__contact-image {
  flex: 0 0 40%;
  max-width: 40%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-sumvip-apk-security-privacy__contact-list {
  flex: 1;
  list-style: none;
  padding: 0;
  color: #f0f0f0;
}

.page-resources-sumvip-apk-security-privacy__contact-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-resources-sumvip-apk-security-privacy__contact-list li strong {
  color: #017439;
}

/* CTA Section */
.page-resources-sumvip-apk-security-privacy__cta-section {
  background-color: #017439; /* Brand color background */
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-resources-sumvip-apk-security-privacy__cta-section .page-resources-sumvip-apk-security-privacy__section-title {
  color: #ffffff;
}

.page-resources-sumvip-apk-security-privacy__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources-sumvip-apk-security-privacy__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-sumvip-apk-security-privacy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-sumvip-apk-security-privacy__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-resources-sumvip-apk-security-privacy__btn-primary:hover {
  background-color: #e00b0b;
  transform: translateY(-3px);
}

.page-resources-sumvip-apk-security-privacy__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-sumvip-apk-security-privacy__btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* FAQ Section */
.page-resources-sumvip-apk-security-privacy__faq-section {
  padding: 80px 0;
  background-color: #0d0d0d; /* Dark background for FAQ */
  color: #ffffff;
}