.glassy-background {
background: rgba(108, 108, 108, 0.7);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border: 1px solid rgba(108, 108, 108, 0.11);
}

.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(190% + 1.3px);
  height: 120px;
  transform: rotateY(180deg);
}

.shape-divider .shape-fill {
  fill: #F4F7FA;
}

@media (max-width: 767px) {
  .shape-divider svg {
      width: calc(141% + 1.3px);
      height: 56px;
  }
}

#toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: left 0.3s ease;
  border: 2px solid var(--color-white);
  box-sizing: border-box;
}

#toggle.active {
  left: calc(100% - 24px);
}

.accordion-header {
  border: none;
  cursor: pointer;
  padding: 24px;
}

.accordion-header img {
  transition: transform 0.5s ease;
}

.accordion-header.active {
  border-bottom: 1px solid var(--border-color-default);
}

.accordion-header.active img {
  transform: rotate(90deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  padding: 0 24px;
}

.accordion-content.active {
  max-height: 300px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.serviceIcon {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  left: 24px;
  top: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-color-default);
  background-color: var(--color-white);
}

.process {
  display: none;
}

.process.active {
  display: flex;
}

.cookieAlert {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212327;
  color: #ecf0f1;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(100%);
  transition: all 500ms ease-out;
}

.cookieAlert.active {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

.cookieButton {
  font-size: 16px;
  padding: 0.5rem 1.875rem;
  color: #FFFFFF;
  background-color: #4E6BFF;
  border-radius: 9999px;
  display: inline;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 400;
}