/* WeCollect Custom Styles */
.wecollect-body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

.wecollect-header {
  background: #93ce20;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.wecollect-header h1 {
  margin: 0 0 10px;
  color: white !important;
}

.wecollect-header p {
  margin: 0 0 20px;
}

.cta-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  background: white;
  color: #93ce20;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.cta-buttons a:hover {
  background: #e0e0e0;
}

.wecollect-section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

.wecollect-h2 {
  color: #93ce20;
  margin-top: 0;
  margin-bottom: 20px;
}

.wecollect-section ul {
  padding-left: 20px;
  line-height: 1.6;
}

.wecollect-section li {
  margin-bottom: 10px;
}

.carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
}

.carousel iframe {
  flex: 0 0 300px;
  height: 180px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .wecollect-header {
    padding: 30px 15px;
  }
  
  .wecollect-section {
    padding: 30px 15px;
  }
  
  .cta-buttons a {
    display: block;
    margin: 10px auto;
    max-width: 250px;
  }
  
  .carousel iframe {
    flex: 0 0 250px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .wecollect-header h1 {
    font-size: 24px;
  }
  
  .wecollect-h2 {
    font-size: 20px;
  }
  
  .carousel iframe {
    flex: 0 0 220px;
    height: 130px;
  }
}


