/* style/resources-how-to-register-login.css */
:root {
  --primary-color: #002060; /* Deep Royal Blue */
  --secondary-color: #FFD700; /* Bright Gold */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f4f7f6;
  --background-medium: #e0e0e0;
  --accent-color: #004080;
}

.page-resources-how-to-register-login {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-light);
}

.page-resources-how-to-register-login h1, .page-resources-how-to-register-login h2, .page-resources-how-to-register-login h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-how-to-register-login h1 {
  font-size: 2.8em;
  text-align: center;
  color: var(--text-color-light);
}

.page-resources-how-to-register-login h2 {
  font-size: 2.2em;
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}

.page-resources-how-to-register-login h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-resources-how-to-register-login h3 {
  font-size: 1.6em;
  color: var(--primary-color);
}

.page-resources-how-to-register-login p {
  margin-bottom: 15px;
}

.page-resources-how-to-register-login a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-how-to-register-login a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-resources-how-to-register-login__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-how-to-register-login__section {
  padding: 60px 0;
  margin-bottom: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-how-to-register-login__section:nth-of-type(even) {
  background-color: var(--background-light);
}

/* Hero Section */
.page-resources-how-to-register-login__hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--text-color-light);
  overflow: hidden;
}

.page-resources-how-to-register-login__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-how-to-register-login__hero-image {
  width: 100%;
  max-width: 800px; /* Adjust based on desired visual impact */
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-register-login__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-how-to-register-login__hero-content h1 {
  margin-bottom: 25px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-how-to-register-login__hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-resources-how-to-register-login__hero-content a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-resources-how-to-register-login__hero-content a:hover {
  color: #fff;
}

.page-resources-how-to-register-login__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-resources-how-to-register-login__cta-button:hover {
  background: #FFD700;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-register-login__cta-button--small {
  padding: 10px 25px;
  font-size: 1em;
  border-radius: 30px;
  margin-top: 15px;
}

/* Step-by-step Guide */
.page-resources-how-to-register-login__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-register-login__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-resources-how-to-register-login__step-item:hover {
  transform: translateY(-5px);
}

.page-resources-how-to-register-login__step-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 25px;
  border-radius: 8px;
  border: 1px solid var(--background-medium);
}

.page-resources-how-to-register-login__step-item h3 {
  color: var(--primary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-resources-how-to-register-login__step-item ul {
  list-style-type: disc;
  text-align: left;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-resources-how-to-register-login__step-item ul li {
  margin-bottom: 8px;
}

/* Benefits Grid */
.page-resources-how-to-register-login__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-register-login__benefit-item {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid var(--secondary-color);
}

.page-resources-how-to-register-login__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-resources-how-to-register-login__benefit-icon {
  width: 100%;
  max-width: 150px; /* Larger icons for benefits */
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.2));
}

.page-resources-how-to-register-login__benefit-item h3 {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* FAQ Section */
.page-resources-how-to-register-login__faq-list {
  margin-top: 40px;
}

.page-resources-how-to-register-login .faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--background-medium);
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-how-to-register-login .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-resources-how-to-register-login .faq-question:hover {
  background: var(--background-light);
}

.page-resources-how-to-register-login .faq-question h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.2em;
  flex-grow: 1;
  text-align: left;
}

.page-resources-how-to-register-login .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.page-resources-how-to-register-login .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.page-resources-how-to-register-login .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: var(--background-light);
}

.page-resources-how-to-register-login .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

.page-resources-how-to-register-login .faq-answer p {
  margin-bottom: 0;
  color: var(--text-color-dark);
}

/* Safety Tips */
.page-resources-how-to-register-login__safety-tips ul {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}

.page-resources-how-to-register-login__safety-tips ul li {
  background-color: #fcfcfc;
  border-left: 5px solid var(--secondary-color);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-resources-how-to-register-login__safety-tips ul li strong {
  color: var(--primary-color);
}

/* Conclusion */
.page-resources-how-to-register-login__conclusion p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-resources-how-to-register-login__cta-final {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-how-to-register-login h1 {
    font-size: 2.4em;
  }
  .page-resources-how-to-register-login h2 {
    font-size: 1.8em;
  }
  .page-resources-how-to-register-login h3 {
    font-size: 1.3em;
  }
  .page-resources-how-to-register-login__hero-image {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-register-login__section {
    padding: 40px 0;
  }
  .page-resources-how-to-register-login__container {
    padding: 15px;
  }
  .page-resources-how-to-register-login h1 {
    font-size: 2em;
  }
  .page-resources-how-to-register-login h2 {
    font-size: 1.6em;
  }
  .page-resources-how-to-register-login h3 {
    font-size: 1.2em;
  }
  .page-resources-how-to-register-login__hero-image {
    max-width: 90%;
    margin-bottom: 30px;
  }
  .page-resources-how-to-register-login__hero-content p {
    font-size: 1em;
  }
  .page-resources-how-to-register-login__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-resources-how-to-register-login__step-by-step,
  .page-resources-how-to-register-login__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources-how-to-register-login .faq-question {
    padding: 15px 20px;
  }
  .page-resources-how-to-register-login .faq-question h3 {
    font-size: 1.1em;
  }
  .page-resources-how-to-register-login .faq-toggle {
    font-size: 20px;
  }
  .page-resources-how-to-register-login .faq-answer {
    padding: 0 20px;
  }
  .page-resources-how-to-register-login .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-register-login h1 {
    font-size: 1.8em;
  }
  .page-resources-how-to-register-login h2 {
    font-size: 1.4em;
  }
  .page-resources-how-to-register-login__hero {
    padding: 60px 15px;
  }
  .page-resources-how-to-register-login__hero-image {
    margin-bottom: 20px;
  }
  .page-resources-how-to-register-login__hero-content p {
    font-size: 0.95em;
  }
  .page-resources-how-to-register-login__cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-resources-how-to-register-login__step-item {
    padding: 20px;
  }
  .page-resources-how-to-register-login__benefit-item {
    padding: 20px;
  }
}