/* style/account-verification.css */
.page-account-verification {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A1A1A; /* Dark background */
}

.page-account-verification__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-account-verification__hero-section {
  background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Gold to Burgundy gradient */
  padding: 80px 0;
  text-align: center;
  color: #1A1A1A; /* Dark text on light/bright background */
}

.page-account-verification__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #1A1A1A; /* Dark text for high contrast */
  font-weight: bold;
}

.page-account-verification__subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333; /* Slightly lighter dark text */
}

.page-account-verification__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  border: none;
  cursor: pointer;
}

.page-account-verification__button--primary {
  background-color: #8B0000; /* Burgundy */
  color: #FFD700; /* Gold text */
}

.page-account-verification__button--primary:hover {
  background-color: #A00000; /* Darker Burgundy */
  transform: translateY(-3px);
}

.page-account-verification__button--secondary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Burgundy text */
  border: 2px solid #8B0000;
}

.page-account-verification__button--secondary:hover {
  background-color: #E0B000; /* Darker Gold */
  transform: translateY(-3px);
}

.page-account-verification__button--inline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 20px;
  margin-top: 20px;
}

.page-account-verification__button--inline:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-account-verification__content-section {
  padding: 60px 0;
  background-color: #222222; /* Slightly lighter dark background for sections */
  margin-bottom: 20px;
}

.page-account-verification__content-section:nth-of-type(odd) {
  background-color: #1A1A1A;
}

.page-account-verification__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-account-verification__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #CCCCCC;
}

.page-account-verification__grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-account-verification__text-content {
  flex: 1;
  min-width: 300px;
}

.page-account-verification__text-content h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-account-verification__text-content p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-account-verification__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-account-verification__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-account-verification__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-account-verification__benefit-card {
  background-color: #333333;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-account-verification__benefit-card:hover {
  transform: translateY(-10px);
  background-color: #444444;
}

.page-account-verification__benefit-card h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-account-verification__benefit-card p {
  color: #CCCCCC;
  font-size: 1em;
}

.page-account-verification__benefit-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-account-verification__process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-account-verification__step-card {
  background-color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-account-verification__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #8B0000;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-account-verification__step-card h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-account-verification__step-card p {
  color: #CCCCCC;
  font-size: 1em;
}

.page-account-verification__note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #FFD700;
  font-size: 1.1em;
}

.page-account-verification__image--small {
  max-width: 80%;
  margin-top: 20px;
}

.page-account-verification__documents {
  padding-bottom: 80px;
}

.page-account-verification__document-list {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-account-verification__document-item {
  background-color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  flex: 1;
  min-width: 300px;
  max-width: 48%;
}

.page-account-verification__document-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
  text-align: center;
}

.page-account-verification__document-item ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-account-verification__document-item ul li {
  background-color: #444444;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 5px;
  color: #E0E0E0;
}

.page-account-verification__document-item strong {
  color: #FFD700;
}

.page-account-verification__document-item p {
  font-style: italic;
  font-size: 0.95em;
  color: #AAAAAA;
  text-align: center;
}

.page-account-verification__document-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  display: block;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-account-verification__link {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-account-verification__link:hover {
  color: #FFFFFF;
}

.page-account-verification__faq-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-account-verification__faq-item {
  background-color: #333333;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-account-verification__faq-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-account-verification__faq-item p {
  color: #CCCCCC;
  font-size: 1em;
}

.page-account-verification__final-cta {
  background-color: #8B0000; /* Burgundy background */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold text */
}

.page-account-verification__final-cta .page-account-verification__section-title {
  color: #FFD700;
}

.page-account-verification__final-cta .page-account-verification__description {
  color: #FFD700;
  margin-bottom: 40px;
}

.page-account-verification__cta-image {
  max-width: 150px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}

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

  .page-account-verification__section-title {
    font-size: 2em;
  }

  .page-account-verification__grid {
    flex-direction: column;
  }

  .page-account-verification__document-list {
    flex-direction: column;
  }

  .page-account-verification__document-item {
    max-width: 100%;
  }

  .page-account-verification__hero-section,
  .page-account-verification__final-cta {
    padding: 60px 0;
  }

  .page-account-verification__button {
    width: 80%;
    margin: 10px auto;
    display: block;
  }
}

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

  .page-account-verification__subtitle {
    font-size: 1em;
  }

  .page-account-verification__section-title {
    font-size: 1.8em;
  }

  .page-account-verification__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}