/* ================= Platform Section (Summary Cards) ================= */
#platform {
  background: #f7f9ff;
  padding: 80px 20px;
}

#platform .container {
  max-width: 1100px;
  margin: 0 auto;
}

#platform .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  color: #2575fc;
}

#platform .cards {
  display: flex;
  margin-bottom: 20px;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

#platform .card {
  flex: 1 1 30%;
  margin: 10px;
  min-width: 250px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#platform .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

#platform .card h3 {
  font-size: 1.5rem;
  color: #2575fc;
  margin: 0;
}

#platform .card p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
}

#platform .explore {
  margin-top: auto;
  font-weight: bold;
  color: #2575fc;
  font-size: 1rem;
  text-align: right;
}

/* ================= Transparency Detail Section ================= */
#transparency-detail {
  background: #f0f4ff;
  padding: 80px 20px;
}

#transparency-detail .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section Title & Intro */
#transparency-detail .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  color: #2575fc;
}

#transparency-detail .section-intro {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
  text-align: center;
}

/* Columns container */
#transparency-detail .card-columns {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Each pillar card */
#transparency-detail .pillar {
  background: #fff;
  flex: 1 1 30%;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 250px;
}

/* Pillar title */
#transparency-detail .pillar-title {
  font-size: 1.4rem;
  color: #6a11cb;
  margin-bottom: 10px;
}

/* Pillar list */
#transparency-detail .pillar-list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

#transparency-detail .pillar-list li {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #333;
}

/* Conclusion paragraph */
#transparency-detail .section-conclusion {
  margin-top: 40px;
  font-style: italic;
  text-align: center;
  font-size: 1.15rem;
  color: #333;
}

/* ================= Responsive Adjustments ================= */
@media (max-width: 900px) {
  #platform .cards,
  #transparency-detail .card-columns {
    flex-direction: column;
    gap: 25px;
  }
}


/* ================= General Section Spacing ================= */
#transparency-detail,
#transparency-detail-deep {
  padding: 80px 20px;
  background: #f0f4ff;
}

#transparency-detail .container,
#transparency-detail-deep .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Section Title & Intro */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  color: #2575fc;
}

.section-intro {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
  text-align: center;
}

/* ================= Cards (Summary) ================= */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.card {
  flex: 1 1 30%;
  min-width: 250px;
  background: #fff;
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h3 {
  font-size: 1.3rem;
  color: #6a11cb;
  margin: 0;
}

.card p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
  color: #333;
}

/* Section Conclusion */
.section-conclusion {
  margin-top: 40px;
  font-style: italic;
  text-align: center;
  font-size: 1.15rem;
  color: #333;
}

/* ================= Detailed Boxes ================= */

.detail-box {
  background: #fff;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  margin-bottom: 30px;  /* spacing between stacked boxes */
}

.detail-box h3 {
  font-size: 1.4rem;
  color: #6a11cb;
  margin-bottom: 15px;
}

.detail-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 900px) {
  .cards {
    flex-direction: column;
    gap: 25px;
  }
}
