:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-color-light: #f9f9f9;
  --background-color-white: #ffffff;
  --border-color: #e0e0e0;
}

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

.page-resources-suncity888-security__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  background-color: var(--background-color-white); /* Ensure light background for hero */
}

.page-resources-suncity888-security__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-suncity888-security__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-suncity888-security__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-suncity888-security__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-suncity888-security__main-title {
  font-size: 3.2em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-resources-suncity888-security__intro-text {
  font-size: 1.2em;
  color: var(--text-color-dark);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-resources-suncity888-security__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-suncity888-security__cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-suncity888-security__section--padding {
  padding: 60px 20px;
}

.page-resources-suncity888-security__section--gold-bg {
  background-color: var(--primary-color);
  color: var(--text-color-light);
}

.page-resources-suncity888-security__section--dark-red-bg {
  background-color: var(--secondary-color);
  color: var(--text-color-light);
}

.page-resources-suncity888-security__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.page-resources-suncity888-security__dark-bg h2,
.page-resources-suncity888-security__dark-bg h3 {
  color: var(--text-color-light);
}

.page-resources-suncity888-security__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: var(--secondary-color);
}

.page-resources-suncity888-security__section--gold-bg .page-resources-suncity888-security__section-title,
.page-resources-suncity888-security__section--dark-red-bg .page-resources-suncity888-security__section-title {
  color: var(--text-color-light);
}

.page-resources-suncity888-security__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--text-color-dark);
}

.page-resources-suncity888-security__section--gold-bg .page-resources-suncity888-security__paragraph,
.page-resources-suncity888-security__section--dark-red-bg .page-resources-suncity888-security__paragraph {
  color: var(--text-color-light);
}

.page-resources-suncity888-security__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-suncity888-security__feature-item {
  background: rgba(255, 255, 255, 0.15); /* Slightly transparent white on gold/red */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-color-light);
}

.page-resources-suncity888-security__feature-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 400px; /* Specific display width for feature images */
  height: 300px;
  object-fit: cover;
}

.page-resources-suncity888-security__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--text-color-light);
}