.text-title-custom {
    text-align: center;
    vertical-align: middle;
    padding-top: 20px;
}

.text-title-custom p:first-child{
    font-size: 28px;
}

.text-title-custom p:nth-child(2){
    font-size: 18px;
}

.intro {
    padding-top: 80px;
}

.section-1 {
    padding-top: 100px;
    text-align: center;
}

.s1c1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 50px;
}

@media (min-width: 768px) {
    .s1c1 {
        padding-top: 0;
    }
}

.s1c1 h2 {
    padding-bottom: 25px;
}

.section3 {
    padding: 0px 100px;
    padding-top: 100px;
}

.section3 > h2 {
    text-align: center;
    padding-bottom: 50px;
}

.section3 .row > div > div {
  margin: 20px;
  background-color: #D3D3D3;
  border-radius: 8px;
  padding: 50px 50px;
  padding-bottom: 30px
}

.section3 > div > div > div > h2{
    text-align: center;
    font-size: 22px;
    padding-bottom: 20px;
}

.section3 > div > div > div > p {
    text-align: center;
}

.section3 .row {
  display: flex;
  flex-wrap: wrap;
}

.section3 .row > div {
  display: flex;
}

.section4 > h2 {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 60px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: center;
  justify-content: center;
}

/* Default collapsed state */
.card ul {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  padding: 0px 50px;
  padding-top: 15px;
}

/* Expanded state */
.card.expanded ul {
  max-height: 500px;
  opacity: 1;
  color: rgb(220,220,220);
}

/* Optional styling */
.card {
  background: #000000;
  color: #fdfdfdf3;
  padding: 20px;
  border-radius: 15px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.section4 {
    padding-bottom: 80px;
}
