/* Priority Cards Section */
section#white .cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

/* Individual Card Styling */
section#white .card {
  background-color: #218649;
  width: 100%;
  max-width: 350px;
  height: 300px;
  border-radius: 8px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Card Hover Effects */
section#white .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  background-color: #1a6b3a;
}

section#white .card:hover .card-icon {
  transform: scale(1.1);
}

section#white .card:hover .card-text {
  color: #f0f8ff;
}

section#white .card:hover .card-strip {
  background-color: #5a9c69;
  height: 12px;
}

/* Card Content Elements */
section#white .card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

section#white .card-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: auto;
  transition: color 0.3s ease;
}

section#white .card-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background-color: #4a7c59;
  border-radius: 0 0 8px 8px;
  transition: all 0.3s ease;
}

/* Card Icon Styles */
section#white .icon-opportunity,
section#white .icon-community,
section#white .icon-growth {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

section#white .icon-opportunity svg,
section#white .icon-community svg,
section#white .icon-growth svg {
  width: 100%;
  height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  section#white .cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  section#white .card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  section#white .card {
    height: 250px;
    padding: 20px 15px;
  }
  
  section#white .card-text {
    font-size: 16px;
  }
}

