
/* ===============================
   Card Layouts: About, Services, Process
=============================== */
.about-section,
.process-section,
.section-services {
  padding: 3rem 1.5rem;
  background-color: #0d1b2a;
  color: #cbd5e1;
  text-align: center;
}
.section-title,
.about-section h2,
.process-section h2 {
  font-size: 2rem;
  color: #64ffda;
  margin-bottom: 1.5rem;
}
.section-intro,
.section-summary,
.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.7;
}
.about-cards,
.process-cards,
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.about-card,
.process-card,
.service-card {
  background-color: #112b3c;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
  text-align: center;
}
.about-card:hover,
.process-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 188, 212, 0.4);
}
.about-card { max-width: 340px; }
.process-card {
  flex: 1 1 300px;
  max-width: 420px;
}
.service-card {
  flex: 1 1 280px;
  max-width: 400px;
  font-size: 1.2rem;
  font-weight: 500;
  min-height: auto;
  height: auto;
  line-height: 1.5;
  word-wrap: break-word;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card h3,
.process-card h3 {
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.about-card p,
.process-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.process-card ul {
  padding-left: 1.2rem;
  list-style: disc;
  text-align: left;
}
.process-card li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.about-icon {
  display: block;
  margin: 0 auto 15px auto;
  max-width: 120px;
  height: auto;
}
@media (max-width: 768px) {
  .about-cards,
  .process-cards,
  .services-grid {
    flex-direction: column;
    align-items: center;
  }
  .about-card,
  .process-card,
  .service-card {
    max-width: 90%;
  }
}
