/* style/resources-secure-login-account-protection.css */
:root {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-color-light: #f9f9f9;
  --background-color-dark: #1a1a1a;
  --border-color: #e0e0e0;
}

.page-resources-secure-login-account-protection {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: #ffffff; /* Default body background is white, so dark text */
  padding-top: 120px; /* Adjust for fixed header */
}

.page-resources-secure-login-account-protection__hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-color-light);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-secure-login-account-protection__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-resources-secure-login-account-protection__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--text-color-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-secure-login-account-protection__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-secure-login-account-protection__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-secure-login-account-protection__btn-primary,
.page-resources-secure-login-account-protection__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-secure-login-account-protection__btn-primary {
  background: var(--text-color-light);
  color: var(--secondary-color);
}

.page-resources-secure-login-account-protection__btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-secure-login-account-protection__btn-secondary {
  background: transparent;
  color: var(--text-color-light);
  border: 2px solid var(--text-color-light);
}

.page-resources-secure-login-account-protection__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-resources-secure-login-account-protection__section {
  padding: 60px 20px;
  background-color: #ffffff;
  color: var(--text-color-dark);
}

.page-resources-secure-login-account-protection__section--why-security {
  background-color: var(--background-color-light);
}

.page-resources-secure-login-account-protection__section--technology {
  background-color: var(--background-color-light);
}

.page-resources-secure-login-account-protection__section--rewards {
  background-color: var(--background-color-light);
}

.page-resources-secure-login-account-protection__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-secure-login-account-protection__section-title {
  font-size: 2.2em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-secure-login-account-protection__text-block {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: var(--text-color-dark);
}

.page-resources-secure-login-account-protection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-secure-login-account-protection__grid--2-cols {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-resources-secure-login-account-protection__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-resources-secure-login-account-protection__card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-color-dark);
}

.page-resources-secure-login-account-protection__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-secure-login-account-protection__card-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-resources-secure-login-account-protection__card-title {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-secure-login-account-protection__card p {
  font-size: 1em;
  color: #555555;
}

.page-resources-secure-login-account-protection__tech-item {
  background: #ffffff;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  color: var(--text-color-dark);
}

.page-resources-secure-login-account-protection__tech-title {
  font-size: 1.3em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-secure-login-account-protection__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-resources-secure-login-account-protection__list li {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: var(--text-color-dark);
}

.page-resources-secure-login-account-protection__list-title {
  font-size: 1.3em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-secure-login-account-protection__list--checked li {
  position: relative;
  padding-left: 45px;
  text-align: left;
}

.page-resources-secure-login-account-protection__list--checked li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 25px;
  color: var(--primary-color);
  font-size: 1.5em;
  font-weight: bold;
}

.page-resources-secure-login-account-protection__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-secure-login-account-protection__hero-title {
    font-size: 2.5em;
  }
  .page-resources-secure-login-account-protection__section-title {
    font-size: 2em;
  }
  .page-resources-secure-login-account-protection__grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-secure-login-account-protection {
    padding-top: 100px !important; /* Mobile padding for fixed header */
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-secure-login-account-protection__hero-section {
    padding: 60px 15px;
  }
  .page-resources-secure-login-account-protection__hero-title {
    font-size: 2em;
  }
  .page-resources-secure-login-account-protection__hero-description {
    font-size: 1em;
  }
  .page-resources-secure-login-account-protection__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-secure-login-account-protection__btn-primary,
  .page-resources-secure-login-account-protection__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }
  .page-resources-secure-login-account-protection__section {
    padding: 40px 15px;
  }
  .page-resources-secure-login-account-protection__section-title {
    font-size: 1.8em;
  }
  .page-resources-secure-login-account-protection__text-block {
    font-size: 1em;
  }
  .page-resources-secure-login-account-protection__grid,
  .page-resources-secure-login-account-protection__grid--2-cols,
  .page-resources-secure-login-account-protection__grid--3-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-secure-login-account-protection__card {
    padding: 20px;
  }
  .page-resources-secure-login-account-protection__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-resources-secure-login-account-protection__tech-item {
    padding: 20px;
  }
  .page-resources-secure-login-account-protection__list li {
    padding: 20px;
  }
  .page-resources-secure-login-account-protection__list--checked li {
    padding-left: 40px;
  }
  .page-resources-secure-login-account-protection__list--checked li::before {
    top: 20px;
  }
  .page-resources-secure-login-account-protection img,
  .page-resources-secure-login-account-protection__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-resources-secure-login-account-protection__section,
  .page-resources-secure-login-account-protection__card,
  .page-resources-secure-login-account-protection__container,
  .page-resources-secure-login-account-protection__hero-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-secure-login-account-protection__cta-center {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-secure-login-account-protection__hero-title {
    font-size: 1.8em;
  }
  .page-resources-secure-login-account-protection__section-title {
    font-size: 1.6em;
  }
  .page-resources-secure-login-account-protection__card-title,
  .page-resources-secure-login-account-protection__tech-title,
  .page-resources-secure-login-account-protection__list-title {
    font-size: 1.2em;
  }
}