/* ===== FISCAL ACCORDION ===== */

.fiscal-accordion {
  width: 100%;
}

/* ---- single item ---- */
.fiscal-item {
  display: flex;
  align-items: stretch;
  margin: 10px 0;
  border-radius: 10px;
  overflow: hidden;
  gap: 10px;
}

/* ---- number box (left column, full height) ---- */
.fiscal-number {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-top: 28px; */
  /* background: #f3f2f9; */
  transition: background 0.3s ease;
  border-radius: 10px;
  border: 2px solid #1E00C3;
}

.fiscal-number span {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue, #2b2fd4);
  transition: color 0.3s ease;
}

/* ---- right column (header + body) ---- */
.fiscal-right {
  flex: 1;
  background: #f3f2f9;
  border-radius: 10px;
}

/* ---- header row ---- */
.fiscal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  cursor: pointer;
  gap: 10px;
}

.fiscal-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue, #2b2fd4);
}

.fiscal-toggle {
  flex-shrink: 0;
  width: 36px;
  /* height: 32px; */
  /* display: flex; */
  /* align-items: center; */
  justify-content: center;
  /* border: 2px solid var(--blue, #2b2fd4); */
  /* border-radius: 50%; */
}

.fiscal-toggle img {
  /* width: 14px; */
  /* height: auto; */
  transition: transform 0.3s ease;
}

/* ---- expandable body ---- */
.fiscal-body {
  display: none;
  padding: 0 50px 50px 30px;
}
.fiscal-body a{
  color:#1E00C3!important;
  font-weight:700;
  font-size:16px;
  padding-top: 10px;
  gap: 5px;
}
.fiscal-description {
  font-size: 15px;
  line-height: 1.7;
  /* color: var(--blue, #2b2fd4); */
}

.fiscal-description p {
  margin: 0 0 12px;
}

.fiscal-description ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.fiscal-description li {
  margin-bottom: 6px;
}

/* ---- no numbers variant ---- */
.fiscal-item.fiscal-no-numbers {
  gap: 0;
}

/* ===== ACTIVE STATE ===== */

.fiscal-item.active .fiscal-number {
  background: #1e00c3;
  align-items: start;
  padding-top: 5%;
}

.fiscal-item.active .fiscal-number span {
  color: #ffffff;
}

.fiscal-item.active .fiscal-toggle img {
  transform: rotate(180deg);
}
@media(max-width:600px){
	.fiscal-number{
		display:none;
	}
.fiscal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    cursor: pointer;
    gap: 20px;
}
}