.page-login {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Dark body background #121212, so text is light */
  background-color: #121212;
}

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

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

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

.page-login__light-bg {
  background-color: #1a1a1a;
  color: #f0f0f0;
}

.page-login__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content clears fixed header */
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  text-align: left;
  overflow: hidden;
}

.page-login__hero-section .page-login__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-login__hero-content {
  flex: 1;
  min-width: 300px;
  z-index: 1;
}

.page-login__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for title */
  line-height: 1.2;
}

.page-login__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-login__btn-primary,
.page-login__btn-secondary,
.page-login__btn-download {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-login__btn-primary {
  background-color: #EA7C07; /* Login button color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

.page-login__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

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

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

.page-login__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-login__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #26A9E0;
}

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

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

.page-login__guide-item,
.page-login__benefit-card,
.page-login__troubleshooting-item,
.page-login__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-login__guide-subtitle,
.page-login__benefit-title,
.page-login__troubleshooting-subtitle {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-login__guide-text,
.page-login__benefit-text,
.page-login__troubleshooting-text {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-login__guide-list {
  list-style: decimal;
  padding-left: 20px;
  margin-top: 15px;
  color: #e0e0e0;
}

.page-login__guide-list li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.page-login__login-form-wrapper,
.page-login__benefits-image-wrapper,
.page-login__troubleshooting-image-wrapper,
.page-login__cta-app-image-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-login__login-form-image,
.page-login__benefits-image,
.page-login__troubleshooting-image,
.page-login__cta-app-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  display: block;
}

.page-login__faq-section {
  padding-bottom: 80px;
}

.page-login__faq-items {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-login__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-login__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #26A9E0;
  background-color: rgba(255, 255, 255, 0.05);
  list-style: none;
  position: relative;
}

.page-login__faq-item summary::-webkit-details-marker {
  display: none;
}

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

.page-login__faq-item[open] summary .page-login__faq-toggle {
  transform: rotate(45deg);
}

.page-login__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
  background-color: rgba(255, 255, 255, 0.03);
}

.page-login__cta-app-section .page-login__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-login__cta-app-content {
  flex: 1;
  min-width: 300px;
}

.page-login__cta-app-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #26A9E0;
  line-height: 1.2;
}

.page-login__cta-app-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-login__hero-title {
    font-size: 2.8em;
  }
  .page-login__section-title,
  .page-login__cta-app-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-login__hero-section .page-login__container,
  .page-login__cta-app-section .page-login__container {
    flex-direction: column;
    text-align: center;
  }

  .page-login__hero-content,
  .page-login__cta-app-content {
    order: 2;
  }

  .page-login__hero-image-wrapper,
  .page-login__cta-app-image-wrapper {
    order: 1;
    margin-bottom: 30px;
    margin-top: 0;
  }

  .page-login__hero-title {
    font-size: 2.2em;
  }

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

  .page-login__cta-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }

  .page-login__btn-primary,
  .page-login__btn-secondary,
  .page-login__btn-download {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-login__section {
    padding: 40px 0;
  }

  .page-login__section-title,
  .page-login__cta-app-title {
    font-size: 1.8em;
  }

  .page-login__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-login__guide-grid,
  .page-login__benefits-grid,
  .page-login__troubleshooting-grid {
    grid-template-columns: 1fr;
  }

  .page-login__guide-item,
  .page-login__benefit-card,
  .page-login__troubleshooting-item,
  .page-login__card {
    padding: 25px;
  }

  .page-login__guide-subtitle,
  .page-login__benefit-title,
  .page-login__troubleshooting-subtitle {
    font-size: 1.4em;
  }

  .page-login__faq-item summary {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-login__faq-answer {
    padding: 10px 20px 15px;
  }

  /* Image and Video responsive adaptation */
  .page-login img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-login__section,
  .page-login__card,
  .page-login__container,
  .page-login__hero-section,
  .page-login__cta-app-section,
  .page-login__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-login__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-login__cta-app-section .page-login__container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-login__cta-app-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-login__login-form-wrapper,
  .page-login__benefits-image-wrapper,
  .page-login__troubleshooting-image-wrapper,
  .page-login__cta-app-image-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-login__hero-title {
    font-size: 1.8em;
  }
  .page-login__section-title,
  .page-login__cta-app-title {
    font-size: 1.5em;
  }
  .page-login__btn-primary,
  .page-login__btn-secondary,
  .page-login__btn-download {
    padding: 10px 15px;
    font-size: 0.9em;
  }
}