/* ===== Safety Section ===== */
.cc-safety-section {
  margin-top: 60px;
  padding: 40px 20px;
  background: #f0fdf4;
  border-radius: 16px;
}

.cc-section-title {
  text-align: center;
  font-size: 28px;
  color: #065f46;
  margin-bottom: 10px;
}

.cc-section-subtitle {
  text-align: center;
  color: #047857;
  margin-bottom: 30px;
}

/* ===== Accordion ===== */
.cc-accordion-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.cc-accordion-header {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #ffffff;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
}

.cc-accordion-header:hover {
  background: linear-gradient(135deg, #15803d, #16a34a);
}

.cc-accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
}

.cc-accordion-content ul {
  padding: 15px 0;
  margin: 0;
}

.cc-accordion-content li {
  margin-bottom: 10px;
  color: #374151;
}

.cc-accordion-item.active .cc-accordion-content {
  max-height: 300px;
  padding: 0 20px 15px 20px;
}

.cc-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.cc-accordion-item.active .cc-icon {
  transform: rotate(45deg);
}

