/* style/resources-choang-club-pc-security-privacy.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --login-color: #EA7C07;
  --background-color: #FFFFFF;
  --black-color: #000000;
}

.page-resources-choang-club-pc-security-privacy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-color);
}

.page-resources-choang-club-pc-security-privacy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  background: linear-gradient(135deg, var(--primary-color) 0%, #4facfe 100%); /* Adjusted gradient for better visual */
  color: var(--text-light);
  overflow: hidden;
}

.page-resources-choang-club-pc-security-privacy__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-resources-choang-club-pc-security-privacy__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-choang-club-pc-security-privacy__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-resources-choang-club-pc-security-privacy__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-resources-choang-club-pc-security-privacy__main-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-choang-club-pc-security-privacy__intro-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-choang-club-pc-security-privacy__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--login-color); /* Using login color for CTA for prominence */
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-resources-choang-club-pc-security-privacy__cta-button:hover {
  background: #ff8c1a; /* Slightly darker orange on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-choang-club-pc-security-privacy__content-section {
  padding: 60px 20px;
}

.page-resources-choang-club-pc-security-privacy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-choang-club-pc-security-privacy__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-choang-club-pc-security-privacy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--login-color);
  border-radius: 2px;
}

.page-resources-choang-club-pc-security-privacy__paragraph {
  font-size: 1.1em;
  margin-bottom: 25px;
  text-align: justify;
}

.page-resources-choang-club-pc-security-privacy__link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-choang-club-pc-security-privacy__link:hover {
  color: var(--login-color);
  text-decoration: underline;
}

.page-resources-choang-club-pc-security-privacy__link-white {
  color: var(--secondary-color);
}

.page-resources-choang-club-pc-security-privacy__link-white:hover {
  color: var(--login-color);
}

.page-resources-choang-club-pc-security-privacy__highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.page-resources-choang-club-pc-security-privacy__highlight-white {
  color: var(--secondary-color);
  font-weight: bold;
}

/* Feature Grid */
.page-resources-choang-club-pc-security-privacy__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-choang-club-pc-security-privacy__feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}