body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f8f9fc;
  color: #333;
  box-sizing: border-box;
}

.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 100px;
  padding: 50px 20px;
}

.title {
  text-align: center;
  grid-column: 2/3;
}

.title h2:first-child {
  font-weight: 400;
  color: #888;
  margin-bottom: 0;
}

.title h2:nth-child(2) {
  font-weight: 700;
  color: #333;
}

.title p {
  margin-top: 10px;
  font-size: 16px;
  color: #666;
}

.one, .two, .three, .four {
  border-radius: 10px;
  background-color: white;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  min-height: 150px;
}

.one {
  border-top: 4px solid #28c6d2;
  grid-column: 1 / 2;
  align-self: center; /* Centers the .one cell vertically */
}

.two {
  border-top: 4px solid #ea5353;
  grid-column: 2 / 3;
}

.three {
  border-top: 4px solid #fdbd5a;
  grid-column: 2 / 3;
}

.four {
  border-top: 4px solid #547efc;
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  align-self: center; /* Centers the .four cell vertically */
}

img {
  position: absolute;
  bottom: 20px;
  right: 20px;
  height: 40px;
}

h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

p {
  font-size: 14px;
  color: #666;
}

/* Mobile Design */
@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 15px;
    padding: 20px;
  }

  .one, .two, .three, .four {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .title {
    grid-column: 1 / 2;
    padding: 0 20px;
  }

  img {
    height: 50px;
  }
}
