.groups-section {
  background-color: #ffffff; 
  padding: 50px 20px;
}

.groups-section h2 {
  color: #212529;
  text-align: center;
  margin-bottom: 40px;
}

/* Accordion container */
.accordion {
  max-width: 700px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 10px;
  border: none;
}

.accordion-header {
  width: 100%;
  background-color: #ffffff;
  color: #df6a27;
  padding: 15px 20px;
  text-align: left;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  outline: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15); 
}

.accordion-header:hover {
  background-color: #ffe0b2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.20);
}

.accordion-content {
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  max-height: 0;
  padding: 0 20px;
  transition: max-height 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #212529;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08); 
}


.accordion-content p {
  margin: 40px;
}


@media (max-width: 767px) {
  .groups-section {
    padding: 40px 15px;
  }
  .accordion-header {
    font-size: 1rem;
    padding: 12px 15px;
  }
  .accordion-content {
    font-size: 0.85rem;
    padding: 0 15px;
  }
}

.card {
  border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.accordion-header .icon {
  color: #df6a27;
  margin-right: 1.3rem; 
  font-size: 1.3rem;  
  vertical-align: middle;
}

#downloads {
  padding: 30px 20px;
    color: #6c757d;
}

#downloads h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

#downloads p {
  font-size: 0.85rem;
  margin-bottom: 8px;
    color: #6c757d;
}

#downloads a {
  text-decoration: none;
  transition: color 0.2s ease;
    color: #6c757d;
}

#downloads a:hover {
  color: #df6a27;
}

