body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

h3 {
    text-align: center;
    font-size: xx-large;
    color: #450E07;
    margin-bottom: 40px;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.process {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;
  gap: 40px;
  padding: 20px;
  flex-wrap: wrap;           /* important for mobile */
}

@media (max-width: 768px) {
  .process {
    flex-direction: column;
    gap: 20px;
  }
}

.pro1 {
    border: 2px;
    border-radius: 20px;
    height: 160px;
    width: 500px;
    text-align: center;
    background-image: linear-gradient(to bottom right, #8a5a2b, #4a2c14);
    box-shadow: 1px 5px 10px 2px rgb(177, 175, 175);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.process2 {
  display: flex;
  justify-content: center;   /* CENTER IT */
  align-items: center;
  gap: 40px;
  padding: 20px;
  flex-wrap: wrap;           /* mobile support */
}

@media (max-width: 768px) {
  .process2 {
    flex-direction: column;
  }
}
.pro2 {
    border: 2px;
    border-radius: 20px;
    height: 160px;
    width: 500px;
    text-align: center;
    box-shadow: 1px 5px 10px 2px rgb(177, 175, 175);
    background-image: linear-gradient(to bottom right, #8a5a2b, #4a2c14);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px
}

h4 {
    font-size: xx-large;
    margin-bottom: 0;
    margin-top: 0;
}
