.accordion-section{
  padding: 44px 0;
}

.accordion-section h2{
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: #212121;
}

.accordion-section .accordion-item{
  border-bottom: 1px solid #C0C0C0; 
  padding: 22px 0;
}

.accordion-section .accordion-item .accordion-title{
  width: 100%;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #212121;
  position: relative;
  padding: 0 48px 0 0;
  text-align: left;
}

.accordion-section .accordion-item .accordion-title:before{
  content:"";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  display: block;
  width: 32px;
  height: 32px;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33' fill='none'%3E%3Cpath d='M16.04 0.459961C7.19585 0.459961 0 7.65581 0 16.5C0 25.3442 7.19585 32.54 16.04 32.54C24.8842 32.54 32.0801 25.3442 32.0801 16.5C32.0801 7.65581 24.8842 0.459961 16.04 0.459961ZM16.04 2.92766C23.5492 2.92766 29.6124 8.99087 29.6124 16.5C29.6124 24.0091 23.5492 30.0723 16.04 30.0723C8.53091 30.0723 2.4677 24.0091 2.4677 16.5C2.4677 8.99087 8.53091 2.92766 16.04 2.92766ZM14.8062 9.0969V15.2662H8.63694V17.7338H14.8062V23.9031H17.2739V17.7338H23.4431V15.2662H17.2739V9.0969H14.8062Z' fill='%235F5F5F'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #5F5F5F;
}

.accordion-section .accordion-item.active .accordion-title:before{
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33' fill='none'%3E%3Cpath d='M16.04 0.459961C7.19585 0.459961 0 7.65581 0 16.5C0 25.3442 7.19585 32.54 16.04 32.54C24.8842 32.54 32.0801 25.3442 32.0801 16.5C32.0801 7.65581 24.8842 0.459961 16.04 0.459961ZM16.04 2.92766C23.5492 2.92766 29.6124 8.99087 29.6124 16.5C29.6124 24.0091 23.5492 30.0723 16.04 30.0723C8.53091 30.0723 2.4677 24.0091 2.4677 16.5C2.4677 8.99087 8.53091 2.92766 16.04 2.92766ZM14.8062 15.2662H8.63694V17.7338H14.8062H17.2739H23.4431V15.2662H17.2739H14.8062Z' fill='%235F5F5F'/%3E%3C/svg%3E");
}

.accordion-section .accordion-item .accordion-content{
  max-height: 0;
  transition: max-height 0.3s ease;
  overflow: hidden;
}

.accordion-section .accordion-item .accordion-content p{
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
  color: #212121;
}

.accordion-section .accordion-item .accordion-content .accordion-image{
  max-height: 500px;
  width: auto;
  object-fit: contain;
}

.accordion-section .accordion-item .accordion-content > :first-child {
  margin-top: 24px;
}

.accordion-section .accordion-item .accordion-content p:last-child{
  margin-bottom: 0
}

@media (max-width: 1200px) {
  .accordion-section h2{
    font-size: 40px;
  }

  .accordion-section .accordion-item .accordion-title{
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .accordion-section h2{
    font-size: 36px;
  }

  .accordion-section .accordion-item .accordion-title{
    font-size: 26px;
  }
}