/* style/security-guarantee-account-protection.css */

/* Base styles for the page */
.page-security-guarantee-account-protection {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark grey for readability on light backgrounds */
  line-height: 1.6;
  background-color: #f9f9f9; /* Light background for the main content */
}

/* Container for content width */
.page-security-guarantee-account-protection__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-security-guarantee-account-protection__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient for hero */
  color: #FFFFFF; /* White text on dark background */
  padding: 80px 0;
  text-align: center;
}

.page-security-guarantee-account-protection__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  line-height: 1.2;
}

.page-security-guarantee-account-protection__subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0; /* Light grey for subtitle */
}

.page-security-guarantee-account-protection__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button background */
  color: #1A202C; /* Dark text on gold button */
  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;
  border: none;
  cursor: pointer;
}

.page-security-guarantee-account-protection__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

/* Content Sections */
.page-security-guarantee-account-protection__content-section,
.page-security-guarantee-account-protection__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* White background for content */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-security-guarantee-account-protection__section-heading {
  font-size: 2.5em;
  color: #1A202C; /* Dark blue for section headings */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-security-guarantee-account-protection__section-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-security-guarantee-account-protection__text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-security-guarantee-account-protection__feature-item {
  background-color: #f0f2f5; /* Light grey background for feature items */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-security-guarantee-account-protection__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-security-guarantee-account-protection__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-security-guarantee-account-protection__feature-title {
  font-size: 1.6em;
  color: #1A202C; /* Dark blue for feature titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-security-guarantee-account-protection__feature-description {
  font-size: 1em;
  color: #555555;
}

/* Checklist */
.page-security-guarantee-account-protection__checklist {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-security-guarantee-account-protection__checklist-item {
  background-color: #f0f2f5; /* Light grey background */
  border-left: 5px solid #FFD700; /* Gold accent bar */
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-security-guarantee-account-protection__checklist-title {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-security-guarantee-account-protection__checklist-description {
  font-size: 1em;
  color: #555555;
}

/* CTA Group */
.page-security-guarantee-account-protection__cta-group {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-security-guarantee-account-protection__cta-button--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-security-guarantee-account-protection__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-security-guarantee-account-protection__cta-button--secondary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-security-guarantee-account-protection__cta-button--secondary:hover {
  background-color: #0d1016;
  color: #FFD700;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-security-guarantee-account-protection__faq-item {
  background-color: #f0f2f5;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-security-guarantee-account-protection__faq-question {
  font-size: 1.3em;
  color: #1A202C;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-security-guarantee-account-protection__faq-answer {
  font-size: 1em;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-security-guarantee-account-protection__title {
    font-size: 2.5em;
  }

  .page-security-guarantee-account-protection__subtitle {
    font-size: 1.1em;
  }

  .page-security-guarantee-account-protection__section-heading {
    font-size: 2em;
  }

  .page-security-guarantee-account-protection__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-security-guarantee-account-protection__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-security-guarantee-account-protection__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-security-guarantee-account-protection__title {
    font-size: 2em;
  }

  .page-security-guarantee-account-protection__subtitle {
    font-size: 1em;
  }

  .page-security-guarantee-account-protection__section-heading {
    font-size: 1.8em;
  }

  .page-security-guarantee-account-protection__feature-title {
    font-size: 1.4em;
  }

  .page-security-guarantee-account-protection__checklist-title {
    font-size: 1.3em;
  }

  .page-security-guarantee-account-protection__faq-question {
    font-size: 1.2em;
  }
}