/* CARES Page Styles */

/* Showcase Section - Similar to contact page */
#showcase-cares {
  min-height: 75vh;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  border-top: var(--bs-primary) 5px solid;
  border-bottom: var(--bs-warning) 5px solid;
  background-color: var(--bs-primary);
}

#showcase-cares::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  opacity: 0.2;
}

.showcase-content {
  position: relative;
  z-index: 2;
}

/* Main Content Styling */
.cares-section {
  padding: 2rem 0;
}

.section-header {
  margin-bottom: 2rem;
  color: var(--bs-primary);
  text-align: center;
}

/* CARES Values Cards */
.cares-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cares-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cares-card .icon {
  font-size: 2.5rem;
  color: var(--bs-primary);
  margin-bottom: 1rem;
  display: block;
  text-align: center;
}

.cares-card h3 {
  color: var(--bs-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.cares-card p {
  color: #555;
  line-height: 1.6;
}

/* Mission and Vision Sections */
.mission-section,
.vision-section {
  padding: 3rem 0;
  position: relative;
}

.mission-section {
  background-color: #f8f9fa;
}

.vision-section {
  background-color: #fff;
}

.mission-section h2,
.vision-section h2 {
  color: var(--bs-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.mission-section p,
.vision-section p {
  color: #555;
  line-height: 1.6;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  #showcase-cares {
    min-height: 50vh;
  }

  .cares-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  #showcase-cares {
    min-height: 40vh;
  }

  .cares-card h3 {
    font-size: 1.3rem;
  }
}
