.page-login {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-login__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding */
  background-color: #08160F; /* Ensure dark background for hero */
}

.page-login__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

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

.page-login__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 40px 20px;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, rgba(8, 22, 15, 0.9) 100%);
  margin-top: -100px; /* Pull content up over the image slightly for visual flow */
  border-radius: 10px;
}

.page-login__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-login__hero-description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-login__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-login__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-login__section {
  padding: 60px 20px;
  text-align: center;
}

.page-login__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-login__light-bg {
  background-color: #F2FFF6; /* Light background for contrast */
  color: #333333; /* Dark text for contrast */
}

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

.page-login__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #F2C14E; /* Gold */
}

.page-login__light-bg .page-login__section-title {
  color: #11A84E; /* Primary color for light background */
}

.page-login__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
}

.page-login__light-bg .page-login__section-description {
  color: #666666;
}

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

.page-login__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.page-login__step-title {
  font-size: 1.5em;
  color: #11A84E; /* Primary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-login__step-item p {
  color: #333333;
}

.page-login__tip-box {
  background-color: #2E7A4E; /* Border color as background */
  color: #F2FFF6;
  padding: 20px;
  border-radius: 8px;
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-login__tip-text strong {
  color: #F2C14E; /* Gold */
}

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

.page-login__benefit-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-login__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.page-login__benefit-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-login__benefit-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-login__benefit-text {
  color: #A7D9B8; /* Text Secondary */
}

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

.page-login__issue-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-login__issue-title {
  font-size: 1.5em;
  color: #11A84E; /* Primary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-login__issue-text {
  color: #333333;
  margin-bottom: 20px;
}

.page-login__issue-link {
  color: #22C768; /* Auxiliary color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-login__issue-link:hover {
  color: #11A84E; /* Primary color on hover */
}

.page-login__security-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-login__security-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-login__security-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 700px;
}

.page-login__security-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.1em;
}

.page-login__security-item strong {
  color: #F2C14E; /* Gold */
}

.page-login__cta-button--secondary {
  background: #11A84E; /* Primary color */
  color: #ffffff;
}

.page-login__cta-button--secondary:hover {
  background: #22C768; /* Auxiliary color */
}

.page-login__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-login__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-login__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome */
}

.page-login__faq-question:hover {
  background-color: #11A84E; /* Primary color on hover */
}

.page-login__faq-qtext {
  flex-grow: 1;
  color: #F2FFF6;
}

.page-login__faq-toggle {
  font-size: 1.5em;
  margin-left: 20px;
  color: #F2C14E; /* Gold */
}

.page-login__faq-item[open] .page-login__faq-toggle {
  content: '−';
}

.page-login__faq-answer {
  padding: 15px 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05em;
  line-height: 1.7;
  background-color: #11271B; /* Card BG */
}

.page-login__faq-answer p {
  margin: 0;
  color: #A7D9B8;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-login__security-content {
    flex-direction: row;
    text-align: left;
  }
  .page-login__security-image {
    flex-shrink: 0;
    max-width: 45%;
  }
  .page-login__security-list {
    flex-grow: 1;
  }
}

@media (max-width: 768px) {
  .page-login__hero-content {
    padding: 30px 15px;
    margin-top: -50px; /* Adjust for smaller screens */
  }

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

  .page-login__hero-description {
    font-size: 1em;
  }

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

  .page-login__section-description {
    font-size: 0.95em;
  }

  .page-login__steps-grid,
  .page-login__benefits-grid,
  .page-login__issues-grid {
    grid-template-columns: 1fr;
  }

  .page-login__hero-image,
  .page-login__benefit-image,
  .page-login__security-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-login__section,
  .page-login__container,
  .page-login__hero-image-wrapper,
  .page-login__hero-content,
  .page-login__steps-grid,
  .page-login__step-item,
  .page-login__tip-box,
  .page-login__benefits-grid,
  .page-login__benefit-card,
  .page-login__issues-grid,
  .page-login__issue-card,
  .page-login__security-content,
  .page-login__security-list,
  .page-login__security-item,
  .page-login__faq-list,
  .page-login__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-login__cta-button,
  .page-login__issue-link {
    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__cta-button--secondary {
    margin-top: 15px;
  }

  .page-login__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-login__hero-content {
    border-radius: 0;
  }
  .page-login__section {
    padding: 40px 15px;
  }
  .page-login__hero-image-wrapper {
    max-height: 400px; /* Adjust hero image height for mobile */
  }
}