
.amarillofaqs-container {
  margin: 30px 0;
  max-width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

.amarillofaqs-main-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0 0 25px 0;
  text-align: center;
  position: relative;
}

.amarillofaqs-main-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #50A826;
  margin: 10px auto 0;
  border-radius: 2px;
}

.amarillofaqs-block {
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-radius: 12px;
}

.amarillofaqs-header {
  padding: 25px 30px;
  background: linear-gradient(135deg, #50A826 0%, #45952a 100%);
  color: white;
}

.amarillofaqs-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.amarillofaqs-description {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
}

.amarillofaqs-container .question-content {
  display: flex;
  gap: 10px;
}

.amarillofaqs-accordion {
  background: #fff;
}

.amarillofaqs-item {
  border-bottom: 1px solid #f0f0f0;
  background: #ffffff;
  transition: all 0.2s ease;
}

.amarillofaqs-item:last-child {
  border-bottom: none;
}

.amarillofaqs-item.active {
  background: #fafbfc;
}

.amarillofaqs-toggle {
  width: 100%;
  padding: 20px 25px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  transition: all 0.2s ease;
}

.amarillofaqs-toggle:hover {
  background-color: #f8f9fa;
}

.amarillofaqs-item.active .amarillofaqs-toggle {
  background-color: #f0f8ff;
  border-bottom: 1px solid #e3f2fd;
}

.question-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #50A826 0%, #45952a 100%);
  color: white;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(80, 168, 38, 0.3);
}

.question-text {
  flex: 1;
  font-weight: 500;
  color: #2c3e50;
}

.question-icon svg {
  stroke: #50A826;
  transition: transform 0.2s ease;
}

.amarillofaqs-item.active .question-icon svg {
  transform: rotate(180deg);
}

.amarillofaqs-answer {
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
  overflow: hidden;
}

.answer-content {
  padding: 25px;
  color: #555;
  line-height: 1.7;
  font-size: 15px;
  background: #fafbfc;
  border-left: 4px solid #50A826;
  margin: 0;
}

.answer-content p {
  margin: 0 0 15px 0;
}

.answer-content p:last-child {
  margin-bottom: 0;
}

.answer-content ul, .answer-content ol {
  margin: 15px 0;
  padding-left: 20px;
}

.answer-content li {
  margin-bottom: 8px;
}

.answer-content strong {
  color: #2c3e50;
  font-weight: 600;
}

.answer-content a {
  color: #50A826;
  text-decoration: none;
  font-weight: 500;
}

.answer-content a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .amarillofaqs-main-title {
    font-size: 24px;
  }
  
  .amarillofaqs-header {
    padding: 20px;
  }
  
  .amarillofaqs-title {
    font-size: 20px;
  }
  
  .amarillofaqs-toggle {
    padding: 15px 20px;
    font-size: 15px;
  }
  
  .question-number {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  
  .answer-content {
    padding: 20px;
    font-size: 14px;
  }
  
  .amarillofaqs-container .question-content {
    gap: 8px;
  }
}