.top {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 40px 20px 0 20px;
}
.top .left {
  margin-bottom: 35px;
}
.top .left,
.top .right {
  flex: 1;
}
.top .left h1,
.top .right h1,
.top .left h2,
.top .right h2 {
  margin: 0 0 10px 0;
}
.top .left h2,
.top .right h2 {
  font-weight: 200;
}
@media (max-width: 768px) {
  .top {
    flex-direction: column;
  }
  .top .left,
  .top .right {
    flex: none;
    text-align: center;
    width: 100%;
  }
  .top .left {
    padding-right: 0;
  }
}
.top .right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.top .right img {
  width: 100%;
  max-width: 250px;
  height: auto;
}
.horizontal {
  background: linear-gradient(90deg, #0eb99a 2%, #6dc0b7 46%, #0eb99a 99%);
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 60px;
  height: 100px;
  align-items: flex-end;
}
.horizontal .item {
  position: relative;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 10px;
  color: #fff;
  font-family: "IBM Plex Sans Condensed", serif;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.horizontal .item:hover {
  transform: scale(1.1);
}
.horizontal .item::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-image: url('/static/0/img/svg/link2.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 15px;
  transform: translateX(-50%);
}
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 20px;
  max-width: 1200px;
  margin: auto;
}
.card {
  position: relative;
  width: 100%;
  padding: 20px;
  padding-bottom: 60px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: #fff;
}
.card .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.card .title {
  font-size: 20px;
  font-weight: bold;
  color: #0EB99A;
}
.card .logo img {
  width: auto;
  height: 30px;
}
.card .content h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}
.card .content p {
  color: #666;
  margin-bottom: 40px;
}
.card .buttons {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
/* Responsive adjustments */
@media (max-width: 912px) {
  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .cards-container {
    grid-template-columns: 1fr;
    padding: 15px;
  }
  .logo {
    margin-top: 10px;
  }
  .card .buttons {
    gap: 10px;
    left: 10px;
    right: 10px;
  }
  .buttons button {
    flex: 1;
    margin: 5px;
  }
}
