.page-register-login-phone-email-verification {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-register-login-phone-email-verification .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register-login-phone-email-verification .hero-section {
  background: linear-gradient(135deg, #CC0000 0%, #FFCC00 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-register-login-phone-email-verification .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-register-login-phone-email-verification .hero-title .highlight {
  color: #FFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-register-login-phone-email-verification .hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #f0f0f0;
}

.page-register-login-phone-email-verification .hero-actions .btn {
  margin: 10px;
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-weight: bold;
}

.page-register-login-phone-email-verification .btn-primary {
  background-color: #FFCC00;
  color: #CC0000;
  border: 2px solid #FFCC00;
}

.page-register-login-phone-email-verification .btn-primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-register-login-phone-email-verification .btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-register-login-phone-email-verification .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-register-login-phone-email-verification .section-title {
  font-size: 2.5em;
  color: #CC0000;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-register-login-phone-email-verification .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-register-login-phone-email-verification .section-subtitle {
  text-align: center;
  font-size: 1.1em;
  max-width: 900px;
  margin: -10px auto 50px;
  color: #555;
}

.page-register-login-phone-email-verification .info-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-register-login-phone-email-verification .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-register-login-phone-email-verification .info-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-register-login-phone-email-verification .info-card:hover {
  transform: translateY(-10px);
}

.page-register-login-phone-email-verification .info-card .info-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(204, 0, 0, 0.3));
}

.page-register-login-phone-email-verification .info-card h3 {
  font-size: 1.5em;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-register-login-phone-verification .info-card p {
  color: #666;
}

.page-register-login-phone-email-verification .steps-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-register-login-phone-email-verification .step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 30px;
}

.page-register-login-phone-email-verification .step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #CC0000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(204, 0, 0, 0.3);
}

.page-register-login-phone-email-verification .step-content h3 {
  font-size: 2em;
  color: #CC0000;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-register-login-phone-email-verification .step-content p {
  margin-bottom: 15px;
  color: #444;
}

.page-register-login-phone-email-verification .step-content ol {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 15px;
}

.page-register-login-phone-email-verification .step-content ol li {
  margin-bottom: 10px;
  color: #444;
}

.page-register-login-phone-email-verification .step-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-register-login-phone-email-verification .text-link {
  color: #CC0000;
  text-decoration: underline;
  font-weight: bold;
}

.page-register-login-phone-email-verification .text-link:hover {
  color: #FFCC00;
}

.page-register-login-phone-email-verification .call-to-action-title {
  margin-top: 80px;
  color: #CC0000;
}

.page-register-login-phone-email-verification .call-to-action-description {
  text-align: center;
  font-size: 1.2em;
  max-width: 900px;
  margin: 20px auto 40px;
  color: #555;
}

.page-register-login-phone-email-verification .call-to-action-buttons {
  text-align: center;
  margin-bottom: 60px;
}

.page-register-login-phone-email-verification .call-to-action-buttons .btn {
  margin: 10px;
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-weight: bold;
}

.page-register-login-phone-email-verification .btn-tertiary {
  background-color: #FFCC00;
  color: #CC0000;
  border: 2px solid #FFCC00;
}

.page-register-login-phone-email-verification .btn-tertiary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-register-login-phone-email-verification .faq-section {
  padding: 60px 0;
  background-color: #f0f0f0;
}

.page-register-login-phone-email-verification .faq-item {
  background-color: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-register-login-phone-email-verification .faq-item h3 {
  font-size: 1.4em;
  color: #CC0000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-register-login-phone-email-verification .faq-item p {
  color: #555;
}

.page-register-login-phone-email-verification .security-tips-section {
  padding: 60px 0 80px;
  background-color: #fff;
}

.page-register-login-phone-email-verification .tip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-register-login-phone-email-verification .tip-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 5px solid #CC0000;
}

.page-register-login-phone-email-verification .tip-card:hover {
  transform: translateY(-10px);
}

.page-register-login-phone-email-verification .tip-card .tip-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 5px rgba(255, 204, 0, 0.3));
}

.page-register-login-phone-email-verification .tip-card h3 {
  font-size: 1.4em;
  color: #CC0000;
  margin-bottom: 10px;
}

.page-register-login-phone-email-verification .tip-card p {
  color: #666;
}

.page-register-login-phone-email-verification .keyword {
  font-weight: bold;
  color: #CC0000;
}

@media (max-width: 768px) {
  .page-register-login-phone-email-verification .hero-title {
    font-size: 2.5em;
  }
  .page-register-login-phone-email-verification .hero-description {
    font-size: 1em;
  }
  .page-register-login-phone-email-verification .section-title {
    font-size: 2em;
  }
  .page-register-login-phone-email-verification .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-register-login-phone-email-verification .step-content h3 {
    font-size: 1.6em;
  }
  .page-register-login-phone-email-verification .hero-actions .btn,
  .page-register-login-phone-email-verification .call-to-action-buttons .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-register-login-phone-email-verification .hero-title {
    font-size: 2em;
  }
  .page-register-login-phone-email-verification .section-title {
    font-size: 1.8em;
  }
  .page-register-login-phone-email-verification .hero-actions .btn,
  .page-register-login-phone-email-verification .call-to-action-buttons .btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-register-login-phone-email-verification .step-number {
    margin-bottom: 20px;
  }
}