/* style/resources-how-to-choose-reliable-betting-platform.css */
.page-resources-how-to-choose-reliable-betting-platform {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff;
  line-height: 1.6;
}

.page-resources-how-to-choose-reliable-betting-platform__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-how-to-choose-reliable-betting-platform__section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-resources-how-to-choose-reliable-betting-platform__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-resources-how-to-choose-reliable-betting-platform__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-how-to-choose-reliable-betting-platform__paragraph {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-how-to-choose-reliable-betting-platform__highlight-text {
  font-weight: bold;
  color: #26A9E0;
}

/* Hero Section */
.page-resources-how-to-choose-reliable-betting-platform__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); /* Fixed header offset */
  background: linear-gradient(135deg, #26A9E0, #a8d7f2);
  color: #ffffff;
}

.page-resources-how-to-choose-reliable-betting-platform__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-resources-how-to-choose-reliable-betting-platform__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-how-to-choose-reliable-betting-platform__hero-title {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-resources-how-to-choose-reliable-betting-platform__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-how-to-choose-reliable-betting-platform__hero-image-wrapper {
  width: 100%;
  max-width: 800px; /* Adjust max-width for image */
  margin: 0 auto;
}

.page-resources-how-to-choose-reliable-betting-platform__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-choose-reliable-betting-platform__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #EA7C07; /* Login color for CTA */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-how-to-choose-reliable-betting-platform__cta-button:hover {
  background: #d66e06;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-choose-reliable-betting-platform__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Criteria Grid */
.page-resources-how-to-choose-reliable-betting-platform__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-how-to-choose-reliable-betting-platform__card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}