.page-login {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #FFFFFF;
}

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

/* Hero Section */
.page-login__hero-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background-color: #26A9E0;
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-login__hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-login__main-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: bold;
  line-height: 1.2;
}

.page-login__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-login__form-wrapper {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  margin-bottom: 30px;
}

.page-login__form-group {
  margin-bottom: 20px;
  text-align: left;
}

.page-login__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #ffffff;
}

.page-login__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
  background-color: #ffffff;
  color: #333333;
}

.page-login__forgot-password {
  display: block;
  text-align: right;
  margin-top: -10px;
  margin-bottom: 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95em;
}

.page-login__forgot-password:hover {
  text-decoration: underline;
}

.page-login__btn-primary {
  display: inline-block;
  background-color: #EA7C07;
  color: #ffffff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-weight: bold;
  width: 100%;
  box-sizing: border-box;
}

.page-login__btn-primary:hover {
  background-color: #c96706;
}

.page-login__no-account-text {
  margin-top: 20px;
  font-size: 1em;
  color: #f0f0f0;
}

.page-login__register-link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
}

.page-login__register-link:hover {
  color: #f0f0f0;
}

.page-login__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
  overflow: hidden;
}

.page-login__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* General Section Styling */
.page-login__section {
  padding: 60px 0;
  text-align: center;
}

.page-login__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-login__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-login__section-title {
  font-size: 2.2em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-login__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.page-login__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-login__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Why Choose Section */
.page-login__why-choose .page-login__section-title,
.page-login__why-choose .page-login__section-description {
  color: #333333;
}

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

.page-login__feature-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  height: 100%;
  box-sizing: border-box;
}

.page-login__feature-icon {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.page-login__feature-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  margin-top: 0;
}

.page-login__feature-text {
  font-size: 0.95em;
  color: #555555;
  line-height: 1.6;
}

/* Guide Section */
.page-login__guide-section .page-login__section-title,
.page-login__guide-section .page-login__section-description {
  color: #ffffff;
}

.page-login__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
  margin-bottom: 60px;
}

.page-login__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  box-sizing: border-box;
}

.page-login__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #EA7C07;
  margin-bottom: 15px;
}

.page-login__step-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-login__step-text {
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-login__issues-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  text-align: left;
}

.page-login__issue-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  box-sizing: border-box;
}

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

.page-login__issue-text {
  font-size: 0.9em;
  color: #f0f0f0;
}

/* Security Section */
.page-login__security-section .page-login__section-title,
.page-login__security-section .page-login__section-description {
  color: #333333;
}

.page-login__security-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-login__security-text {
  flex: 1;
  min-width: 300px;
}

.page-login__security-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-login__security-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-login__security-tips {
  list-style: disc;
  margin-left: 25px;
  font-size: 0.95em;
  color: #555555;
}

.page-login__security-tips li {
  margin-bottom: 10px;
}

/* Promotions Section */
.page-login__promotions-section .page-login__section-title,
.page-login__promotions-section .page-login__section-description {
  color: #ffffff;
}

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

.page-login__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  color: #ffffff;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-login__promo-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-login__promo-text {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-login__btn-secondary {
  display: inline-block;
  background-color: #ffffff;
  color: #26A9E0;
  padding: 10px 20px;
  border: 2px solid #26A9E0;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-weight: bold;
}

.page-login__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-login__cta-promotions .page-login__btn-primary {
  max-width: 300px;
  margin: 0 auto;
}

/* Mobile Section */
.page-login__mobile-section .page-login__section-title,
.page-login__mobile-section .page-login__section-description {
  color: #333333;
}

.page-login__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-login__mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-login__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-login__mobile-text {
  flex: 1;
  min-width: 300px;
}

.page-login__mobile-benefits {
  list-style: disc;
  margin-left: 25px;
  font-size: 0.95em;
  color: #555555;
}

.page-login__mobile-benefits li {
  margin-bottom: 10px;
}

.page-login__app-download-cta {
  margin-top: 30px;
}

.page-login__app-download-cta .page-login__btn-primary {
  max-width: 300px;
  width: auto;
}

/* FAQ Section */
.page-login__faq-section .page-login__section-title,
.page-login__faq-section .page-login__section-description {
  color: #ffffff;
}

.page-login__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-login__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-login__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-login__faq-title {
  margin: 0;
  color: #ffffff;
  font-size: 1.1em;
}

.page-login__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-login__faq-item.active .page-login__faq-toggle {
  transform: rotate(45deg);
}

.page-login__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-login__faq-item.active .page-login__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-login__faq-answer p {
  margin: 0;
  font-size: 0.95em;
  line-height: 1.6;
}

/* Call to Action Section */
.page-login__cta-section {
  background-color: #ffffff;
  color: #333333;
  padding: 80px 0;
}

.page-login__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-login__cta-section .page-login__section-title,
.page-login__cta-section .page-login__section-description {
  color: #333333;
}

.page-login__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-login__cta-buttons .page-login__btn-primary,
.page-login__cta-buttons .page-login__btn-secondary {
  min-width: 200px;
  width: auto;
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .page-login__main-title {
    font-size: 2.5em;
  }
  .page-login__hero-description {
    font-size: 1.1em;
  }
  .page-login__section-title {
    font-size: 2em;
  }
  .page-login__security-content,
  .page-login__mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-login__security-image-wrapper,
  .page-login__mobile-image-wrapper {
    order: -1; /* Image first on mobile */
  }
  .page-login__security-tips,
  .page-login__mobile-benefits {
    text-align: left;
    margin-left: 0;
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .page-login__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-login__main-title {
    font-size: 2em;
  }
  .page-login__hero-description {
    font-size: 1em;
  }
  .page-login__section {
    padding: 40px 0;
  }
  .page-login__section-title {
    font-size: 1.8em;
  }
  .page-login__section-description {
    font-size: 0.95em;
  }
  .page-login__sub-title {
    font-size: 1.5em;
  }
  .page-login__features-grid,
  .page-login__steps-grid,
  .page-login__issues-list,
  .page-login__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-login__hero-image,
  .page-login__feature-icon,
  .page-login__security-image,
  .page-login__mobile-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-login__container,
  .page-login__form-wrapper,
  .page-login__feature-item,
  .page-login__step-item,
  .page-login__issue-item,
  .page-login__promo-card,
  .page-login__security-text,
  .page-login__security-image-wrapper,
  .page-login__mobile-text,
  .page-login__mobile-image-wrapper,
  .page-login__faq-item,
  .page-login__cta-content,
  .page-login__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-login__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-login__btn-primary,
  .page-login__btn-secondary,
  .page-login a[class*="button"],
  .page-login a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-login__app-download-cta .page-login__btn-primary {
    max-width: 100% !important;
  }
  .page-login__faq-question {
    padding: 15px 20px;
  }
  .page-login__faq-answer {
    padding: 0 20px;
  }
  .page-login__faq-item.active .page-login__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-login__main-title {
    font-size: 1.8em;
  }
  .page-login__hero-description {
    font-size: 0.9em;
  }
  .page-login__section-title {
    font-size: 1.6em;
  }
  .page-login__form-wrapper {
    padding: 25px;
  }
  .page-login__forgot-password,
  .page-login__no-account-text {
    font-size: 0.85em;
  }
}