.page-resources {
  font-family: Arial, sans-serif;
  color: #333333; /* Default text color for light background */
  background: var(--background-color, #FFFFFF);
}

.page-resources__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #E0F7FA, #B3E5FC);
  overflow: hidden;
}

.page-resources__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-resources__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources__main-title {
  font-size: 3.2em;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-resources__hero-description {
  font-size: 1.2em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

.page-resources__cta-button {
  display: inline-block;
  padding: 16px 45px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  box-sizing: border-box;
}

.page-resources__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources__btn-primary:hover {
  background: #1e88e5;
  border-color: #1e88e5;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

.page-resources__btn-secondary:hover {
  background: #f0f8ff;
  color: #1e88e5;
  border-color: #1e88e5;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

.page-resources__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-resources__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
  color: #555555;
}

.page-resources__download-guide {
  background: #f8fcfd;
  padding: 60px 20px;
  margin-top: 0;
  margin-bottom: 0;
}

.page-resources__guide-steps {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources__guide-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-resources__guide-item img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-resources__item-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources__guide-item ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 25px;
  color: #555555;
}

.page-resources__guide-item ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-resources__note-text {
  text-align: center;
  font-style: italic;
  color: #777777;
  margin-top: 40px;
  font-size: 0.95em;
}

.page-resources__features {
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-resources__feature-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources__feature-card img {
  width: 100%;
  height: 200px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources__feature-card p {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

.page-resources__button-center {
  text-align: center;
  margin-top: 40px;
}

.page-resources__security-info {
  background: #f8fcfd;
  padding: 60px 20px;
  margin-top: 0;
  margin-bottom: 0;
}

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

.page-resources__security-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
}

.page-resources__security-item h3 {
  font-size: 1.5em;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources__security-item p, .page-resources__security-item ul {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

.page-resources__security-item ul {
  list-style-type: disc;
  padding-left: 20px;
}

.page-resources__security-item ul li {
  margin-bottom: 8px;
}

/* FAQ Section */
.page-resources__faq {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-resources__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

.page-resources__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources__faq-question:active {
  background: #eeeeee;
}

.page-resources__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
  pointer-events: none;
}

.page-resources__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #26A9E0;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-resources__faq-item.active .page-resources__faq-toggle {
  color: #26A9E0;
  transform: rotate(45deg); /* Change to minus sign visually */
}

.page-resources__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #f9fcfd;
  border-radius: 0 0 10px 10px;
}

.page-resources__faq-item.active .page-resources__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

/* News and Updates Section */
.page-resources__news-updates {
  background: #f8fcfd;
  padding: 60px 20px;
  margin-top: 0;
  margin-bottom: 0;
}

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

.page-resources__news-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.page-resources__news-card img {
  width: 100%;
  height: 220px;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.page-resources__news-card .page-resources__card-title {
  padding: 20px 20px 0;
  margin-bottom: 10px;
  font-size: 1.3em;
  text-align: left;
}

.page-resources__news-card .page-resources__card-title a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources__news-card .page-resources__card-title a:hover {
  color: #1e88e5;
}

.page-resources__news-card p {
  padding: 0 20px;
  font-size: 0.95em;
  color: #555555;
  line-height: 1.6;
  flex-grow: 1;
}

.page-resources__news-date {
  display: block;
  font-size: 0.85em;
  color: #777777;
  padding: 0 20px 20px;
  margin-top: 15px;
}

/* Useful Links Section */
.page-resources__useful-links {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-resources__link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.page-resources__link-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  padding: 25px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources__link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources__link-card .page-resources__card-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-resources__link-card p {
  font-size: 0.95em;
  color: #555555;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources__main-title {
    font-size: 2.8em;
  }
  .page-resources__hero-description {
    font-size: 1.1em;
  }
  .page-resources__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources__main-title {
    font-size: 2.2em;
  }
  .page-resources__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-resources__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources__section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-resources__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .page-resources__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  
  .page-resources__guide-steps {
    flex-direction: column;
    gap: 20px;
  }
  .page-resources__guide-item {
    padding: 25px;
  }
  .page-resources__guide-item ol {
    padding-left: 18px;
  }
  .page-resources__item-title {
    font-size: 1.5em;
  }

  .page-resources__feature-grid, .page-resources__security-points, .page-resources__news-grid, .page-resources__link-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-resources__feature-card img {
    
  }
  .page-resources__card-title {
    font-size: 1.3em;
  }

  .page-resources__faq-question {
    padding: 15px 20px;
  }
  .page-resources__faq-question h3 {
    font-size: 1em;
  }
  .page-resources__faq-toggle {
    font-size: 24px;
    width: 26px;
    height: 26px;
    margin-left: 15px;
  }
  .page-resources__faq-answer {
    padding: 0 20px;
  }
  .page-resources__faq-item.active .page-resources__faq-answer {
    padding: 15px 20px !important;
  }

  .page-resources img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-resources__section,
  .page-resources__card,
  .page-resources__container,
  .page-resources__hero-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources__hero-section > .page-resources__hero-container {
    padding-left: 0;
    padding-right: 0;
  }
  .page-resources__cta-group {
    padding-left: 0;
    padding-right: 0;
  }
}