:root {
  --violet: rgb(109, 109, 212);
  --violet-transparent: rgba(109, 109, 212, 0.9);
  --violet-strong-transparent: rgba(109, 109, 212, 0.5);
  --violet-light-transparent: rgba(233, 233, 249);
  --dark-gray: #525252;
  --devdraw: #0b2b53;
}
.smaki {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  justify-content: left;
  margin-top: 200px;
}
.smaki h1 {
   display: flex;
  justify-content: center;
  align-items: center;
  font-size:clamp(1.1rem , 2vw, 1.4rem);
  padding: 1rem;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  transform: translateX(-10px);
}

.smaki h1 > img {
  margin: 0 1rem;
}

.opis {
  color: var(--dark-gray);
  font-style: italic;
  padding:0rem 1.5rem;
  text-align: justify;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 3rem auto 0 auto;
  max-width: 1000px;
  scroll-margin-top: 200px;
}

.opis p {
  text-indent: 2rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom:1.2rem;
}

.opis p > a {
    color:var(--violet);
    font-weight: 600;
    /* font-style: normal; */
}

.centered {
    text-align: center;
    /* max-width:700px; */
    margin:0 auto;
    padding:1.5rem!important;
    font-size:1.2rem;
}

.opis h2 {
  width: 100%;
  text-align: center;
  margin: .5rem .5rem 1rem .5rem;
  color: var(--violet);
  font-size: clamp(1.1rem, 2.6vw, 1.3rem);
  font-weight: bold;
}

.smaki-info,
.smaki-faq {
  width: 100%;
  padding: 4rem 1.5rem;
}

.smaki-info {
  background: #fff;
}

.smaki-faq {
  background: #fff;
}

.smaki-info__inner,
.smaki-faq__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.smaki-info h2,
.smaki-faq h2 {
  text-transform: uppercase;
  color: var(--violet);
  font-size: clamp(1.3rem, 4vw, 2rem);
  text-align: center;
  margin-bottom: 2rem;
}

.smaki-info p,
.smaki-faq p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.8;
  color: var(--dark-gray);
}

.smaki-info p {
  margin-bottom: 1.2rem;
  text-indent: 2rem;
  text-align: justify;
}

.smaki-info a {
  color: var(--violet);
  text-underline-offset: 4px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(109, 109, 212, 0.22);
  background: var(--violet-light-transparent);
  overflow: hidden;
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: start;
  column-gap: 1rem;
  cursor: pointer;
  color: var(--violet);
  text-transform: uppercase;
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  line-height: 1.5;
  list-style: none;
  padding: 1rem 1.25rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: block;
  align-self: start;
  justify-self: end;
  color: var(--violet);
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 0.05rem;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 1.1rem 1.25rem 1.25rem 1.25rem;
  background: #fff;
  border-top: 1px solid rgba(109, 109, 212, 0.15);
}

@media (min-width: 900px) {
  .smaki-info,
  .smaki-faq {
    padding: 5rem 2rem;
  }
}