.page-resources {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A2E44; /* Main dark background */
}

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

.page-resources__hero-section {
  background: linear-gradient(135deg, #1A2E44 0%, #3a506b 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  line-height: 1.2;
}

.page-resources__hero-description {
  font-size: 1.2em;
  color: #F0F0F0; /* Lighter text for description */
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-resources__hero-description strong {
  color: #FFD700;
}

.page-resources__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  text-align: center;
}

.page-resources__btn--primary {
  background-color: #FFD700; /* Gold for primary CTA */
  color: #1A2E44; /* Dark blue text on gold */
  border: none;
}

.page-resources__btn--primary:hover {
  background-color: #e5c100; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-resources__btn--secondary {
  background-color: #3a506b; /* Darker blue for secondary buttons */
  color: #FFD700; /* Gold text on dark blue */
  border: 1px solid #FFD700;
}

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

.page-resources__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-resources__hero-image-wrapper {
  margin-top: 40px;
}

.page-resources__hero-image {
  max-width: 90%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources__section {
  padding: 60px 0;
  background-color: #233e5c; /* Slightly lighter dark blue for sections */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-resources__section:nth-of-type(even) {
  background-color: #1A2E44; /* Alternating background for visual separation */
}

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

.page-resources__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-resources__image-full-width {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-resources__detail-card {
  background-color: #1A2E44; /* Dark blue for card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources__detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources__detail-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #FFD700;
}

.page-resources__detail-card-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for card titles */
  padding: 20px 20px 10px;
  margin: 0;
}

.page-resources__detail-card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources__detail-card-title a:hover {
  color: #e5c100;
}

.page-resources__detail-card-description {
  font-size: 1em;
  color: #E0E0E0;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-resources__detail-card .page-resources__btn--secondary {
  margin: 0 20px 20px;
  align-self: flex-start;
}

.page-resources__why-choose-section {
  background-color: #233e5c;
}

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

.page-resources__feature-item {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-resources__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources__feature-description {
  font-size: 1em;
  color: #E0E0E0;
}

.page-resources__cta-section {
  background-color: #1A2E44;
  text-align: center;
  padding: 80px 0;
}

.page-resources__cta-image {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

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

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

  .page-resources__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }

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

@media (max-width: 480px) {
  .page-resources__hero-title {
    font-size: 2em;
  }

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

  .page-resources__hero-section,
  .page-resources__section,
  .page-resources__cta-section {
    padding: 40px 0;
  }

  .page-resources__container {
    padding: 0 15px;
  }

  .page-resources__btn {
    width: 100%;
    box-sizing: border-box;
  }
}