:root {
  --primary-color: hsl(275, 100%, 97%);
  --secondary-color: hsl(292, 42%, 14%);
  
}

body {
    background-color: var(--primary-color);
    font-family: "Work Sans", serif;
    margin: 0;
    min-height: 100vh;
  }
.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30vh; /* Adjust based on your pattern height */
    background: url("assets/images/background-pattern-desktop.svg") no-repeat center/cover;
    z-index: -1; /* Send it behind other content */
  }
.container {
  padding: 10px;
  position: relative;
  border: 1px solid;
  max-width: 40vw;
  width: 100%;
  border-radius: 10px;
  background: hsl(0, 0%, 100%);
  top: 6rem;
  margin: auto;
}
.main {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}
.top {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 1.6rem;
  /* padding: 0 11px; */
}
.top img {

  width: 2rem;
  height: 2rem;
}
.top h1 {
  color: var(--secondary-color);
}
.accordion {
  max-width: 37vw;
  width: 100%;
  /* list-style: none; */
  display: flex;
  flex-direction: column;
}
.accordion-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-summary h4 {
  color: var(--secondary-color);
}
.accordion p{
    color: hsl(292, 16%, 49%);
    font-size: 14px;
}
@media (max-width: 768px) {
  .container {
    max-width: 90vw; 
    top: 4rem; 
  }

  .accordion {
    max-width: 100%; 
  }

  .bg {
    background-image: url("assets/images/background-pattern-mobile.svg");
  }

  .main {
    padding: 0 16px; 
  }

  .top h1 {
    font-size: 1.8rem; 
  }

  .accordion-summary h4 {
    font-size: 0.9rem; 
  }
}