.page-resources {
  font-family: 'Arial', sans-serif;
  color: #1A202C;
  line-height: 1.6;
  direction: ltr;
}

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

.page-resources__section {
  padding: 60px 0;
}

.page-resources__hero {
  position: relative;
  background: linear-gradient(135deg, #1A202C 0%, #333d4e 100%);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.page-resources__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
  line-height: 1.2;
}

.page-resources__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-resources__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-resources__button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources__button--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-resources__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources__button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-resources__button--sm {
  padding: 8px 18px;
  font-size: 0.9em;
  background-color: #FFD700;
  color: #1A202C;
}

.page-resources__button--sm:hover {
  background-color: #e6c200;
}

.page-resources__section-title {
  font-size: 2.5em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources__introduction {
  background-color: #f8f9fa;
}

.page-resources__introduction .page-resources__text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.1em;
}

.page-resources__content-grid {
  background-color: #ffffff;
}

.page-resources__grid-item {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources__grid-item:nth-child(even) {
  background-color: #eff2f5;
}

.page-resources__grid-title {
  font-size: 1.8em;
  color: #1A202C;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources__sub-title {
  font-size: 1.4em;
  color: #1A202C;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 600;
  border-left: 4px solid #FFD700;
  padding-left: 10px;
}

.page-resources__text {
  font-size: 1em;
  color: #4A5568;
  margin-bottom: 15px;
}

.page-resources__grid-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-resources__list-item {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources__item-title {
  font-size: 1.3em;
  color: #1A202C;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-resources__item-title a {
  color: #1A202C;
  text-decoration: none;
}

.page-resources__item-title a:hover {
  color: #FFD700;
}

.page-resources__item-description {
  font-size: 0.95em;
  color: #4A5568;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources__cta {
  background: linear-gradient(45deg, #1A202C, #4A5568);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-resources__cta-content {
  position: relative;
  z-index: 2;
}

.page-resources__cta-title {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 20px;
}

.page-resources__cta-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.page-resources__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 1;
}

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

  .page-resources__hero-description {
    font-size: 1em;
  }

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

  .page-resources__grid-title {
    font-size: 1.5em;
  }

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

  .page-resources__list-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .page-resources__section {
    padding: 40px 0;
  }

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

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