.page-resources {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-resources .page-resources__hero {
  background: linear-gradient(135deg, #CC0000 0%, #FFCC00 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources .page-resources__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-resources .page-resources__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #eee;
}

.page-resources .page-resources__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.page-resources .page-resources__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-resources .page-resources__section:nth-of-type(even) {
  background-color: #fefefe;
}

.page-resources .page-resources__section-title {
  font-size: 2.2em;
  color: #CC0000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources .page-resources__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-resources p {
  margin-bottom: 1em;
  color: #444;
  font-size: 1.05em;
}

.page-resources .highlight {
  color: #CC0000;
  font-weight: bold;
}

.page-resources .page-resources__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources .page-resources__list li {
  margin-bottom: 10px;
  color: #555;
}

.page-resources .page-resources__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  border: none;
  cursor: pointer;
  font-size: 1em;
  text-align: center;
}

.page-resources .page-resources__btn--primary {
  background-color: #CC0000;
  color: #fff;
}

.page-resources .page-resources__btn--primary:hover {
  background-color: #a30000;
  transform: translateY(-2px);
}

.page-resources .page-resources__btn--secondary {
  background-color: #FFCC00;
  color: #333;
  border: 1px solid #FFCC00;
}

.page-resources .page-resources__btn--secondary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-resources .page-resources__btn--tertiary {
  background-color: #444;
  color: #fff;
  border: 1px solid #444;
}

.page-resources .page-resources__btn--tertiary:hover {
  background-color: #222;
  transform: translateY(-2px);
}

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

.page-resources .page-resources__article-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources .page-resources__article-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.page-resources .page-resources__article-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #CC0000;
}

.page-resources .page-resources__article-title a {
  color: #CC0000;
  text-decoration: none;
}

.page-resources .page-resources__article-title a:hover {
  text-decoration: underline;
}

.page-resources .page-resources__article-description {
  font-size: 0.95em;
  color: #666;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-resources .page-resources__cta-banner {
  background: linear-gradient(90deg, #CC0000, #b30000);
  color: #fff;
  text-align: center;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.page-resources .page-resources__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.page-resources .page-resources__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #eee;
}

.page-resources .page-resources__cta-buttons .page-resources__btn {
  margin: 10px;
}

.page-resources .page-resources__cta-image {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 250px;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  transform: rotate(-10deg);
}

.page-resources .page-resources__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources .page-resources__hero-title {
    font-size: 2em;
  }

  .page-resources .page-resources__hero-description,
  .page-resources p,
  .page-resources .page-resources__list li {
    font-size: 1em;
  }

  .page-resources .page-resources__section-title {
    font-size: 1.8em;
  }

  .page-resources .page-resources__article-list {
    grid-template-columns: 1fr;
  }

  .page-resources .page-resources__cta-title {
    font-size: 2em;
  }

  .page-resources .page-resources__cta-buttons .page-resources__btn {
    display: block;
    width: 80%;
    margin: 15px auto;
  }

  .page-resources .page-resources__hero-image,
  .page-resources .page-resources__cta-image {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-resources .page-resources__hero {
    padding: 60px 0;
  }

  .page-resources .page-resources__hero-title {
    font-size: 1.8em;
  }

  .page-resources .page-resources__section-title {
    font-size: 1.6em;
  }

  .page-resources .page-resources__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-resources .page-resources__article-title {
    font-size: 1.2em;
  }

  .page-resources .page-resources__cta-title {
    font-size: 1.8em;
  }
}