/* style/resources-daga88-account-security-tips.css */

/* Variables (if needed, but using direct colors for this specific task) */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --btn-register-bg: #C30808;
  --btn-register-text: #FFFF00;
  --btn-login-bg: #C30808;
  --btn-login-text: #FFFF00;
}

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

/* Hero Section */
.page-resources-daga88-account-security-tips__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); /* Fixed header spacing */
  background-color: var(--primary-color); /* Dark background for hero */
  color: var(--text-light); /* Light text for dark background */
  overflow: hidden; /* Ensure content doesn't overflow */
}

.page-resources-daga88-account-security-tips__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-resources-daga88-account-security-tips__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 1000px; /* Constrain image width within hero */
}

.page-resources-daga88-account-security-tips__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-daga88-account-security-tips__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-daga88-account-security-tips__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-light);
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-daga88-account-security-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-resources-daga88-account-security-tips__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-daga88-account-security-tips__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box; /* Crucial for responsive buttons */
}

.page-resources-daga88-account-security-tips__btn-primary {
  background: var(--btn-login-bg); /* Specific login color */
  color: var(--btn-login-text); /* Specific login text color */
  border-color: var(--btn-login-bg);
}

.page-resources-daga88-account-security-tips__btn-primary:hover {
  background: #a80707; /* Slightly darker red for hover */
  border-color: #a80707;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-daga88-account-security-tips__btn-secondary {
  background: transparent;
  color: var(--btn-register-text); /* Specific register text color */
  border-color: var(--btn-register-text); /* Border matches text for secondary */
}

.page-resources-daga88-account-security-tips__btn-secondary:hover {
  background: var(--btn-register-text);
  color: var(--btn-register-bg); /* Text becomes dark on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Content Area */
.page-resources-daga88-account-security-tips__content-area {
  padding: 80px 20px;
  background-color: var(--secondary-color); /* Light background for content */
  color: var(--text-dark); /* Dark text for light background */
  overflow: hidden;
}

.page-resources-daga88-account-security-tips__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-resources-daga88-account-security-tips__section-title {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-resources-daga88-account-security-tips__sub-section-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-daga88-account-security-tips__paragraph {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.7;
}

.page-resources-daga88-account-security-tips__paragraph a {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-resources-daga88-account-security-tips__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-resources-daga88-account-security-tips__ordered-list {
  list-style: decimal inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-resources-daga88-account-security-tips__list-item,
.page-resources-daga88-account-security-tips__ordered-list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
  line-height: 1.6;
}