body{
    background-color: var(--color-bg-secondary);
}
.main{
    margin: 120px auto;
    max-width: 1200px;
}
.hero{
  display: flex;
  justify-content: space-between;
}
.hero img{
  max-width: 520px;
}
.hero_text{
  margin: auto 0;
}
h1{
  font-family: 'Gilroy';
  font-size: 48px;
  color: var(--color-accent-purple);
}
h2{
    font-family: 'Inter';
    font-size: 16px;
    margin-top: 8px;
    font-weight: 400;
    margin-bottom: 32px;
    max-width: 600px;
}
h3{
  font-family: 'Gilroy';
  font-size: 36px;
  color: var(--color-accent-purple);
  text-align: left;
}

.price{
  display: flex;
  position: relative;
  min-height: 500px;
}
.price_list {
  width: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price_item {
  background: var(--color-bg-secondary);
  border-radius: 12px;
  padding: 1px;
  position: relative;
  overflow: hidden;
}

.price_short {
  width: 100%;
  background: var(--color-accent-gradient);
  color: var(--color-text-primary);
  font-size: 18px;
  padding: 10px;
  text-align: left;
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter';
  letter-spacing: 0.3px;
}
.price_amount{
  display: flex;
  gap: 10px;
  margin-top: 2px;
}
.price_arrow {
  height: 18px;
  transition: transform 0.3s ease;
  margin-right: 20px;
}

.price_item.active .price_arrow {
  transform: rotate(180deg);
}

.price_long {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  margin: 0 20px 0 20px;
  border-radius: 0 0 12px 12px;
  background-color: var(--color-bg-secondary);
}
.price_long::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px;
  border-radius: inherit;
  background: var(--color-accent-gradient);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none; 
}

.price_item.active .price_long {
  padding: 20px 0;
}


.ctaMoreProjects {
  display: flex;
  width: fit-content; 
  margin: 0 auto; 
  text-align: center;
  gap:20px;
  flex-wrap: wrap;
  justify-content: center;
}

.separator{
  height: 3px;
  width: 80%;
  background-color: rgba(139, 92, 246, 1);
  margin: auto;
}
h4, h5{
  text-align: center;
  font-size: 24px;
}
.technologies h3{
  text-align: center;
  margin-bottom: 60px;
}
.technology_list{
  display: flex;
  justify-content: space-evenly;
}
.technology_list img{
  width: 100px;
  height: auto;
  aspect-ratio: 1 / 1;
}
.content-block_text{
  margin: 40px 0;
}
.content-block h3{
  text-align: center;
}
  .projectRow img{
    max-width: 40%;
  }
@media screen and (max-width:400px) {
	    .projectRow img{
        max-width: 320px;
      }
    }