/* style/register-login.css */
.page-register-login {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-register-login__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.page-register-login__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-register-login__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-register-login__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-register-login__button--primary {
  background-color: #FFCC00;
  color: #003366;
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
}

.page-register-login__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 204, 0, 0.6);
}

.page-register-login__button--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.2);
}

.page-register-login__button--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 204, 0, 0.4);
}

.page-register-login__section {
  padding: 60px 0;
}

.page-register-login__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-register-login__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-register-login__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__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

.page-register-login__highlight {
  color: #003366;
  font-weight: bold;
}

.page-register-login__hero-title .page-register-login__highlight {
  color: #FFCC00;
}

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

.page-register-login__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-register-login__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-register-login__feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-register-login__feature-text {
  font-size: 1em;
  color: #666;
}

.page-register-login__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px auto;
  max-width: 800px;
}

.page-register-login__steps-list li {
  background-color: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  counter-increment: step-counter;
  position: relative;
  padding-left: 60px;
}

.page-register-login__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  background-color: #003366;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-register-login__step-title {
  font-size: 1.4em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-register-login__text-content {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 20px auto 40px auto;
}

.page-register-login__cta-center {
  text-align: center;
  margin-top: 30px;
}

.page-register-login__section-subtitle {
  font-size: 1.8em;
  color: #003366;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-register-login__promo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-register-login__promo-list li {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register-login__promo-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-register-login__promo-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-register-login__promo-title {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-register-login__promo-list p {
  font-size: 0.95em;
  color: #666;
}

.page-register-login__app-download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-register-login__app-info {
  padding-right: 20px;
}

.page-register-login__app-info .page-register-login__section-subtitle {
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
}

.page-register-login__list {
  list-style: disc inside;
  font-size: 1.1em;
  color: #555;
  margin-bottom: 30px;
  padding-left: 20px;
}

.page-register-login__list li {
  margin-bottom: 10px;
}

.page-register-login__app-cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-register-login__app-image {
  text-align: center;
}

.page-register-login__responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-register-login__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-register-login__faq-question {
  font-size: 1.25em;
  color: #003366;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  background-color: #e6f0f8; /* Lighter blue for FAQ questions */
  transition: background-color 0.3s ease;
}

.page-register-login__faq-question:hover {
  background-color: #d9e7f4;
}

.page-register-login__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-register-login__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-register-login__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #fcfcfc;
}

.page-register-login__faq-answer.open {
  max-height: 300px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-register-login__faq-answer p {
  margin-top: 0;
  margin-bottom: 15px;
  color: #444;
}

.page-register-login__final-cta-section {
  background-color: #003366;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-register-login__final-cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00;
}

.page-register-login__final-cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-register-login__hero-title {
    font-size: 2.8em;
  }
  .page-register-login__hero-subtitle {
    font-size: 1.2em;
  }
  .page-register-login__section-title {
    font-size: 2em;
  }
  .page-register-login__app-download-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-register-login__app-info {
    padding-right: 0;
  }
  .page-register-login__app-info .page-register-login__section-subtitle {
    text-align: center;
  }
  .page-register-login__app-cta-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-register-login__hero-title {
    font-size: 2.2em;
  }
  .page-register-login__hero-subtitle {
    font-size: 1.1em;
  }
  .page-register-login__section-title {
    font-size: 1.8em;
  }
  .page-register-login__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-register-login__features-grid,
  .page-register-login__promo-list {
    grid-template-columns: 1fr;
  }
  .page-register-login__final-cta-title {
    font-size: 2.5em;
  }
  .page-register-login__final-cta-description {
    font-size: 1.1em;
  }
  .page-register-login__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-register-login__faq-answer {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-register-login__hero-title {
    font-size: 1.8em;
  }
  .page-register-login__hero-subtitle {
    font-size: 0.95em;
  }
  .page-register-login__section-title {
    font-size: 1.5em;
  }
  .page-register-login__button {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-register-login__hero-cta-group {
    flex-direction: column;
  }
  .page-register-login__steps-list li {
    padding-left: 50px;
  }
  .page-register-login__steps-list li::before {
    left: 15px;
    top: 20px;
    width: 25px;
    height: 25px;
    font-size: 1em;
  }
  .page-register-login__final-cta-title {
    font-size: 2em;
  }
}