.page-resources-latest-analysis-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--black-color); /* Assuming --black-color is dark */
}

.page-resources-latest-analysis-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-latest-analysis-tips__hero-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #26A9E0 0%, #1a7bbd 100%); /* Brand blue gradient */
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-resources-latest-analysis-tips__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-latest-analysis-tips__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-latest-analysis-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-resources-latest-analysis-tips__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.page-resources-latest-analysis-tips__btn-primary {
  background-color: #EA7C07; /* Login orange */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-latest-analysis-tips__btn-primary:hover {
  background-color: #d16b00;
  border-color: #d16b00;
}

.page-resources-latest-analysis-tips__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-latest-analysis-tips__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-resources-latest-analysis-tips__hero-image-wrapper {
  display: none; /* Hide on desktop, show on larger screens if needed, or remove if purely text-based hero */
}

.page-resources-latest-analysis-tips__content-section {
  padding: 60px 0;
  color: #333333; /* Dark text for light background */
  background-color: #ffffff; /* White background for content */
}

.page-resources-latest-analysis-tips__section-title {
  font-size: 2.2em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-latest-analysis-tips__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #333333;
}

.page-resources-latest-analysis-tips__image-text-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-resources-latest-analysis-tips__image-text-block--reverse {
  flex-direction: row-reverse;
}

.page-resources-latest-analysis-tips__image-left,
.page-resources-latest-analysis-tips__image-right {
  flex: 1;
  min-width: 300px; /* Ensure image doesn't get too small */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-latest-analysis-tips__text-content {
  flex: 1;
}

.page-resources-latest-analysis-tips__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-resources-latest-analysis-tips__feature-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  color: #333333;
}

.page-resources-latest-analysis-tips__feature-card:hover {
  transform: translateY(-5px);
}

.page-resources-latest-analysis-tips__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-latest-analysis-tips__feature-description {
  font-size: 1em;
  color: #555555;
}

.page-resources-latest-analysis-tips__image-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.page-resources-latest-analysis-tips__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-latest-analysis-tips__video-container {
  margin-bottom: 60px;
  text-align: center;
  padding: 0 20px; /* Add padding for mobile responsiveness */
  box-sizing: border-box;
}

.page-resources-latest-analysis-tips__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-latest-analysis-tips__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  max-width: 100%;
  display: block;
}

.page-resources-latest-analysis-tips__video-caption {
  margin-top: 15px;
  font-style: italic;
  color: #333333;
}

.page-resources-latest-analysis-tips__cta-banner {
  background: linear-gradient(90deg, #26A9E0 0%, #1a7bbd 100%);
  padding: 50px 20px;
  text-align: center;
  border-radius: 10px;
  margin: 60px auto;
  color: #ffffff;
}

.page-resources-latest-analysis-tips__cta-title {
  font-size: 2em;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-resources-latest-analysis-tips__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-resources-latest-analysis-tips__faq-list {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-resources-latest-analysis-tips__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-resources-latest-analysis-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #eaf7fd; /* Lighter blue for question background */
  border-bottom: 1px solid #d0eaf8;
  list-style: none; /* For details/summary */
}

.page-resources-latest-analysis-tips__faq-question::-webkit-details-marker { /* For details/summary */
  display: none;
}

.page-resources-latest-analysis-tips__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-resources-latest-analysis-tips__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 25px;
  text-align: center;
}

.page-resources-latest-analysis-tips__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #555555;
  text-align: justify;
}

.page-resources-latest-analysis-tips__cta-final {
  background: linear-gradient(90deg, #1a7bbd 0%, #26A9E0 100%);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-latest-analysis-tips__hero-title {
    font-size: 2.5em;
  }
  .page-resources-latest-analysis-tips__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-latest-analysis-tips {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-latest-analysis-tips__hero-section {
    padding: 40px 20px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-resources-latest-analysis-tips__hero-title {
    font-size: 2em;
  }
  .page-resources-latest-analysis-tips__hero-description {
    font-size: 1em;
  }
  .page-resources-latest-analysis-tips__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-latest-analysis-tips__btn-primary,
  .page-resources-latest-analysis-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-resources-latest-analysis-tips__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-latest-analysis-tips__text-block {
    font-size: 1em;
  }
  .page-resources-latest-analysis-tips__image-text-block {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
  .page-resources-latest-analysis-tips__image-text-block--reverse {
    flex-direction: column;
  }
  .page-resources-latest-analysis-tips__image-left,
  .page-resources-latest-analysis-tips__image-right {
    min-width: unset;
    width: 100%;
  }
  .page-resources-latest-analysis-tips__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .page-resources-latest-analysis-tips__feature-card {
    padding: 25px;
  }
  .page-resources-latest-analysis-tips__cta-banner {
    padding: 40px 20px;
    margin: 40px auto;
  }
  .page-resources-latest-analysis-tips__cta-title {
    font-size: 1.5em;
  }
  .page-resources-latest-analysis-tips__cta-description {
    font-size: 1em;
  }
  .page-resources-latest-analysis-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-latest-analysis-tips__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-resources-latest-analysis-tips__faq-answer {
    padding: 15px 20px;
  }
  /* Mobile image and video responsive rules */
  .page-resources-latest-analysis-tips img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-latest-analysis-tips video,
  .page-resources-latest-analysis-tips__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-latest-analysis-tips__section,
  .page-resources-latest-analysis-tips__card,
  .page-resources-latest-analysis-tips__container,
  .page-resources-latest-analysis-tips__video-section,
  .page-resources-latest-analysis-tips__video-container,
  .page-resources-latest-analysis-tips__video-wrapper,
  .page-resources-latest-analysis-tips__cta-buttons,
  .page-resources-latest-analysis-tips__button-group,
  .page-resources-latest-analysis-tips__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-latest-analysis-tips__video-wrapper {
    padding-bottom: 56.25% !important;
  }
  .page-resources-latest-analysis-tips__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-resources-latest-analysis-tips__hero-title {
    font-size: 1.8em;
  }
  .page-resources-latest-analysis-tips__section-title {
    font-size: 1.5em;
  }
  .page-resources-latest-analysis-tips__cta-title {
    font-size: 1.3em;
  }
}