.Paperform__Container {
    padding: 20px 30px !important;
}

.MaterialIcon.material-icons{
    font-size: 16px !important;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  gap: 20px;
  padding: 10px;
  opacity: 0.8;
}

h2 {
    padding-top: 20px !important;
}

.three-col-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.three-col-table td {
  vertical-align: middle;
  text-align: center;
  padding: 10px; /* optional */
}

ul{
    color: #1B1B1C;
    font-family: 'Monserrat', sans-serif;
}
li {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
    font-family: 'Work Sans', sans-serif;
    padding: 10px 0px;
    
}

.grid-child {
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;      /* Stack content vertically */
  align-items: center;         /* Horizontal center */
  justify-content: center;     /* Vertical center */
  text-align: center;          /* Center text inside */
  min-height: 120px;           /* Optional: ensure enough height */
}
.grid-child img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or contain */
}

@media (min-width: 768px) {
  .Paperform__Container {
    padding: 0px 0px 60px 0px !important;
  }
}


.Paperform__QuestionBlock {
    margin-bottom: -10px;
    margin-top: -10px;
    padding: 0px 0px;
    
}
.Paperform__Question {
  margin-bottom: 10px;
   border: 1px solid #ccc;
    border-radius: 6px;
    color: #ECEAEA;
    background-color: rgba(255, 255, 255, 0.3);

}
.Paperform__Question:hover {
  background-color: hsla(0, 100%, 100%, 1);
  border-color: #00455C;
}

.title {
    font-size: 30px;
    color: #00455C;
    font-weight: 300;
    font-family: 'Work Sans', sans-serif;
    text-align: center;
    line-height: 1.2;
    padding: 0px;
}


@media (min-width: 768px) {
  .title {
    padding: 10px 0px;
    font-size: 40px;
  }
}

@media (min-width: 992px) {
  .title {
    padding: 0px ;
    font-size: 42px;
    line-height: 1;

  }
}

@media (min-width: 1400px) {
  .title {
    padding: 0px;
    font-size: 46px;
    line-height: 1;

  }
}

.sub {
    font-size: 12px;
    color: #00455C;
    font-weight: 400;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: center;
    padding: 0px;
}

@media (min-width: 768px) {
  .sub {
    font-size: 16px;
  }
}

@media (min-width: 1400px) {
  .sub {
    font-size: 16px;

  }
}
.header, .section, .section-title {
      margin-bottom: 20px;
    }
.section-title {
      font-weight: bold;
      font-size: 1.2em;
      border-bottom: 2px solid #ccc;
      padding-bottom: 5px;
    }
.info-table {
      width: 100%;
      border-collapse: collapse;
    }
.info-table td {
      padding: 8px;
      border: 1px solid #ddd;
    }
.image-section img {
      width: 100%;
      margin-bottom: 10px;
    }