.forms-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 2rem;
}

.forms-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 0.5rem;
}

.forms-description {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.forms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 56rem;
  align-self: center;
  padding: 1rem;
}

.form-card {
  display: flex;
  align-items: center;
  background-color: white;
  box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.1), 5px 10px 15px rgba(0, 0, 0, 0.1), 5px 10px 15px rgba(0, 0, 0, 0.1);
  border-radius: 35px;
  padding: 1rem 0;
}

.form-image-wrapper {
  width: 6rem;
  height: 6rem;
  flex-shrink: 0;
  overflow: hidden;
}

.form-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}

.form-details {
  flex-grow: 1;
  text-align: center;
}

.form-name {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  padding: 0 0.5rem;
}

.form-download-button {
  background-color: #2db7e3;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 35px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.form-download-button:hover {
  background-color: #1d4ed8;
}

@media screen and (max-width: 480px) {
  .forms-title {
    font-size: 1.3rem;
  }
  .forms-description {
    font-size: 1rem;
  }
  .form-name {
    font-size: 1rem;
  }
}
