/* style/resources.css */
.page-resources {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-resources__hero {
  background: linear-gradient(135deg, #0A2463 0%, #3a5c96 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-resources__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-resources__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
  color: #E0E0E0;
}

.page-resources__hero-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-resources__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  opacity: 0.2;
  z-index: 0;
}

.page-resources__hero-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.page-resources__intro, .page-resources__resource-list, .page-resources__value-proposition, .page-resources__cta {
  padding: 60px 0;
  position: relative;
}

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

.page-resources__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #555555;
}

.page-resources__illustration {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 40px auto;
  opacity: 0.8;
}

.page-resources__illustration--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 30px;
  max-width: 40%;
}

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

.page-resources__resource-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-resources__card-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources__card-title a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-resources__card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources__card-btn {
  display: inline-block;
  background-color: #0A2463;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-resources__card-btn:hover {
  background-color: #FFD700;
  color: #0A2463;
}

.page-resources__value-proposition {
  background-color: #F0F4F8;
  padding: 80px 0;
}

.page-resources__benefits-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.page-resources__benefits-list li {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: #333333;
  text-align: left;
  display: flex;
  align-items: center;
}

.page-resources__benefits-list li i {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
}

.page-resources__benefits-list li .icon-check::before { /* Placeholder for a checkmark icon */
  content: '✔';
  font-family: 'Arial', sans-serif;
  font-weight: bold;
}

.page-resources__cta {
  background-color: #0A2463;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-resources__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  z-index: 1;
  position: relative;
}

.page-resources__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
  z-index: 1;
  position: relative;
}

.page-resources__cta-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  z-index: 1;
  position: relative;
}

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

.page-resources__cta-image {
  position: absolute;
  bottom: -20px;
  left: -50px;
  width: 40%;
  opacity: 0.15;
  z-index: 0;
  transform: rotate(-15deg);
}

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

.page-resources__hero .highlight {
  color: #FFD700;
}

.page-resources__cta .highlight {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-resources__hero-title {
    font-size: 2.5em;
  }
  .page-resources__section-title {
    font-size: 2em;
  }
  .page-resources__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-resources__benefits-list {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .page-resources__illustration--right {
    float: none;
    margin: 40px auto;
    max-width: 60%;
  }
  .page-resources__hero-image-wrapper {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    left: 0;
    justify-content: center;
    align-items: flex-end;
  }
}

@media (max-width: 768px) {
  .page-resources__hero {
    padding: 60px 20px;
  }
  .page-resources__hero-title {
    font-size: 2em;
  }
  .page-resources__hero-description {
    font-size: 1em;
  }
  .page-resources__section-title {
    font-size: 1.8em;
  }
  .page-resources__section-text {
    font-size: 1em;
  }
  .page-resources__grid {
    grid-template-columns: 1fr;
  }
  .page-resources__cta-title {
    font-size: 2.2em;
  }
  .page-resources__cta-description {
    font-size: 1em;
  }
  .page-resources__cta-btn {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-resources__cta-image {
    width: 60%;
    left: -20%;
  }
}

@media (max-width: 480px) {
  .page-resources__hero-title {
    font-size: 1.8em;
  }
  .page-resources__hero-description {
    font-size: 0.9em;
  }
  .page-resources__section-title {
    font-size: 1.5em;
  }
  .page-resources__cta-title {
    font-size: 1.8em;
  }
}