.page-resources {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text for contrast */
  background-color: #121E2E; /* Slightly lighter dark blue for overall background */
}

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

.page-resources__hero {
  background: linear-gradient(135deg, #1A2B4C 0%, #0A162B 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-resources__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for title */
}

.page-resources__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for description */
}

.page-resources__hero-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #1A2B4C; /* Dark blue for button text */
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-resources__hero-btn:hover {
  background-color: #E0B800; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-resources__articles-overview,
.page-resources__responsible-gambling {
  padding: 80px 0;
  background-color: #1A2B4C; /* Main dark blue for sections */
  color: #E0E0E0;
}

.page-resources__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 25px;
  color: #FFD700; /* Gold for section titles */
  font-weight: bold;
}

.page-resources__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.5;
  color: #B0B0B0; /* Lighter gray for descriptions */
}

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

.page-resources__article-card {
  background-color: #0A162B; /* Even darker blue for card background */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources__article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-resources__article-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #2A3E62;
}

.page-resources__article-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-resources__article-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: bold;
}

.page-resources__article-title a {
  color: #FFD700; /* Gold for article titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources__article-title a:hover {
  color: #E0B800; /* Darker gold on hover */
}

.page-resources__article-category {
  display: inline-block;
  background-color: #2A3E62; /* Darker blue for category tag */
  color: #FFD700;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85em;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources__article-summary {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #B0B0B0; /* Lighter gray for summary */
  flex-grow: 1;
}

.page-resources__read-more {
  display: inline-block;
  background-color: #FFD700; /* Gold for read more button */
  color: #1A2B4C; /* Dark blue for button text */
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.page-resources__read-more:hover {
  background-color: #E0B800;
  transform: translateY(-2px);
}

.page-resources__cta-section {
  text-align: center;
  padding: 60px 0;
  background-color: #0A162B; /* Darker blue for CTA section */
  border-radius: 15px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources__cta-text {
  font-size: 1.8em;
  margin-bottom: 30px;
  color: #FFD700; /* Gold for CTA text */
  font-weight: 600;
}

.page-resources__cta-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #1A2B4C; /* Dark blue for button text */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
  border: 2px solid #FFD700;
}

.page-resources__cta-btn:hover {
  background-color: #E0B800;
  transform: translateY(-3px);
}

.page-resources__cta-btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-resources__cta-btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-resources__responsible-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-resources__responsible-image {
  flex: 1;
  max-width: 450px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources__responsible-text {
  flex: 2;
  font-size: 1.1em;
  line-height: 1.7;
  color: #B0B0B0;
}

.page-resources__responsible-text p {
  margin-bottom: 20px;
}

.page-resources__responsible-text ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources__responsible-text ul li {
  margin-bottom: 8px;
}

.page-resources__responsible-text a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources__responsible-text a:hover {
  color: #E0B800;
  text-decoration: underline;
}

.page-resources__responsible-btn {
  display: inline-block;
  background-color: #FFD700; /* Gold for responsible gambling button */
  color: #1A2B4C; /* Dark blue for button text */
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  border: 2px solid #FFD700;
}

.page-resources__responsible-btn:hover {
  background-color: #E0B800;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources__hero-title {
    font-size: 2.8em;
  }
  .page-resources__hero-description {
    font-size: 1.1em;
  }
  .page-resources__section-title {
    font-size: 2.2em;
  }
  .page-resources__article-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-resources__responsible-content {
    flex-direction: column;
    text-align: center;
  }
  .page-resources__responsible-image {
    max-width: 80%;
  }
  .page-resources__responsible-text ul {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-resources__hero {
    padding: 80px 0;
  }
  .page-resources__hero-title {
    font-size: 2.2em;
  }
  .page-resources__hero-description {
    font-size: 1em;
  }
  .page-resources__hero-btn {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-resources__articles-overview,
  .page-resources__responsible-gambling {
    padding: 60px 0;
  }
  .page-resources__section-title {
    font-size: 1.8em;
  }
  .page-resources__section-description {
    font-size: 0.9em;
  }
  .page-resources__article-card {
    margin-bottom: 20px;
  }
  .page-resources__article-title {
    font-size: 1.4em;
  }
  .page-resources__cta-text {
    font-size: 1.5em;
  }
  .page-resources__cta-btn {
    padding: 12px 25px;
    font-size: 0.95em;
    margin: 5px;
  }
  .page-resources__responsible-image {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .page-resources__hero {
    padding: 60px 0;
  }
  .page-resources__hero-title {
    font-size: 1.8em;
  }
  .page-resources__hero-description {
    font-size: 0.9em;
  }
  .page-resources__article-grid {
    grid-template-columns: 1fr;
  }
  .page-resources__cta-btn {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }
  .page-resources__responsible-text ul {
    margin-left: 0;
    padding-left: 20px;
  }
}