:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #ffffff;
  --background-grey: #f9f9f9;
  --border-color: #e0e0e0;
  --button-login-color: #EA7C07;
}

.page-resources-how-to-find-99ok-link {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--background-light);
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-how-to-find-99ok-link__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-how-to-find-99ok-link__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-how-to-find-99ok-link__section:nth-of-type(2n) {
  background-color: var(--background-grey);
}

.page-resources-how-to-find-99ok-link__hero-like-section {
  background: linear-gradient(135deg, var(--primary-color), #4db9f5);
  color: var(--text-light);
  padding: 80px 0;
  padding-top: 0; /* Adjusted because main already has padding-top */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-how-to-find-99ok-link__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-how-to-find-99ok-link__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-resources-how-to-find-99ok-link__intro-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.page-resources-how-to-find-99ok-link__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 10px;
  margin: 30px auto;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-find-99ok-link__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-login-color); /* Using login color for primary CTA */
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-find-99ok-link__cta-button:hover {
  background: #e06c00;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.page-resources-how-to-find-99ok-link__cta-button--centered {
  display: block;
  margin: 40px auto 0 auto;
}

.page-resources-how-to-find-99ok-link__cta-button--final {
  margin-top: 40px;
}

.page-resources-how-to-find-99ok-link__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 10px;
}

.page-resources-how-to-find-99ok-link__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-resources-how-to-find-99ok-link__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-resources-how-to-find-99ok-link__features-grid,
.page-resources-how-to-find-99ok-link__methods-list,
.page-resources-how-to-find-99ok-link__issues-list,
.page-resources-how-to-find-99ok-link__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-resources-how-to-find-99ok-link__feature-item,
.page-resources-how-to-find-99ok-link__method-item,
.page-resources-how-to-find-99ok-link__issue-item,
.page-resources-how-to-find-99ok-link__benefit-item {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-resources-how-to-find-99ok-link__feature-item:hover,
.page-resources-how-to-find-99ok-link__method-item:hover,
.page-resources-how-to-find-99ok-link__issue-item:hover,
.page-resources-how-to-find-99ok-link__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}