.download-section {
  padding: 80px 0;
  text-align: center;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.download-list {
 
  margin: 0 auto;
  padding: 0 20px;
}

.download-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  margin-bottom: 20px;
  justify-content: space-between;
}

.download-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.icon-container-1 {
  display: flex;
  background-color:#8A9136;
  color: #fff;
  border-radius: 50%;
  padding: 15px;
  margin-right: 20px;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-container-1 img {
  width: 40px;
}

.text-container {
  flex-grow: 1;
  /* text-align: left; */
}

.text-container h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #333;
}

.text-container p {
  font-size: 1rem;
  color: #666;
}

.download-btn {
  background-color: #90953B;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  
}

.download-btn:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* Media Query for Responsiveness */
@media (max-width: 768px) {
  .download-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  .icon-container {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .text-container {
    text-align: center;
    margin-bottom: 15px;
  }

  .download-btn {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
}