/* ==============
   VARIABLES
   ============== */
:root {
  --primary: #ff5904;
  --white: #ffffff;
  --text: #333333;
  --muted: rgba(255, 255, 255, 0.85);
  --border: rgba(255, 255, 255, 0.25);
  --transition: all 0.3s ease;
}

/* ==============
   ACCORDION
   ============== */
.accordion {
  max-width: 95vw;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
  background: var(--primary);
  color: var(--white);
}

.accordion-item:last-child {
  border-bottom: none;
}

/* Header Styles */
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.accordion-header:hover {
  background: rgba(0, 0, 0, 0.05);
}

.left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
}

.accordion-arrow {
  font-size: 1.5rem;
  transition: var(--transition);
}

/* Content Styles */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: var(--white);
  color: var(--text);
  transition: var(--transition);
}

.content-inner {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
}

.content-icon {
  font-size: 1.75rem;
  color: var(--primary);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

/* Active States */
.accordion-input:checked + .accordion-header {
  background: rgba(0, 0, 0, 0.1);
}

.accordion-input:checked + .accordion-header .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-input:checked ~ .accordion-content {
  max-height: 500px;
}

.accordion-input:checked ~ .accordion-content .content-icon {
  opacity: 1;
  transform: scale(1);
}

/* Hide default checkbox */
.accordion-input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

/* Content Typography */
.accordion-content h4 {
  margin-top: 0;
  color: var(--primary);
}

.accordion-content p {
  margin-bottom: 0;
}

/* Layout Styles */

.accordion-layout {
  display: flex;
  gap: 2rem;
}

.accordion-side {
  flex: 1;
}

.content-side {
  flex: 1;
  padding: 1.5rem;
}

/* Content Side Styles */
.content-side h2 {
  color: #ff5904;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.content-block {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #ff5904;
}

.content-block h3 {
  color: #333;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-block i {
  color: #ff5904;
  font-size: 1.5rem;
}

.content-block p {
  color: #666;
  line-height: 1.6;
  letter-spacing: 0.06rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .accordion-layout {
    flex-direction: column;
  }

  .content-side {
    order: -1;
    margin-bottom: 2rem;
  }
}
