/* 🌿 Welcome Section */
.important-welcome-section {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, #e0f7f7, #f5fffe);
  border-radius: 12px;
  margin-bottom: 50px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.important-welcome-section h1 {
  font-size: 32px;
  color: #072E33;
  margin-bottom: 20px;
}

.important-welcome-section p {
  font-size: 17px;
  max-width: 720px;
  margin: 0 auto 10px;
  color: #0F7075;
  line-height: 1.8;
}

/* 📄 About Page Wrapper */
.important-page {
  padding: 40px 20px;
  background-color: #f4fcfc;
  color: #072E33;
  line-height: 1.7;
}

/* 📌 Sections */
.important-section {
  margin-bottom: 60px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.important-section h2 {
  font-size: 28px;
  color: #072E33;
  margin-bottom: 16px;
  border-left: 4px solid #0F969C;
  padding-left: 10px;
}

.important-section p, .imporant-section li {
  font-size: 16px;
  color: #444;
}

/* 👤 Cards Grid */
.important-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.important-card {
  background: #fefefe;
  border-radius: 10px;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s;
}
.important-card:hover {
  transform: translateY(-5px);
}
.important-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}
.important-card h3 {
  font-size: 20px;
  color: #072E33;
  margin: 10px 0 6px;
}

/* 🌟 Highlighted Section */
.important-highlight {
  background: linear-gradient(to right, #e0f7f7, #f5fffe);
}

/* 📬 Contact */
.important-contact p {
  margin: 6px 0;
  font-weight: 500;
  color: #0F969C;
}

.important-end {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f5fffe, #e0f7f7);
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.important-end p {
  font-size: 18px;
  font-weight: 600;
  color: #0F7075;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}


/* 📱 Responsive */
@media (max-width: 768px) {
  .important-grid {
    flex-direction: column;
  }
  .important--section {
    padding: 30px 20px;
  }
}