.registry__main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-content: center;
    gap: 5%;
    min-height: 200px;
}

.container__registry {
    padding: 1rem;
    box-shadow: -1px 1px 20px 6px rgba(204, 204, 204, 0.5);
    max-height: 250px;
}

.list__items {
    margin-top: 20px;
}

.heading {
    line-height: 1.5;
}

.list__items > li {
    border-bottom: 1px dotted #d1d5db;
    transition: transform 200ms ease-in-out;
    cursor: pointer;
}

.list__items > li:hover {
    color: #6366f1;
    transform: translateX(-10px);
}

.list__items > li:not(:last-child) {
    margin-bottom: 15px;
}

.list__items a.active {
  color: #6366f1;
}

.content {
    display: none;
}

.content > h4 {
    margin: 8px 0px;
}

.margin {
    margin-top: 50px;
}

.spacing {
    max-width: 80vw;
    margin: 0 auto;
}

.faq__container {
    margin-top: 30px;
}

.faqs__header > h3 {
    border: 2px dashed #d1d5db;
    padding: 20px;
}

.faq__heading {
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: #22d3ee;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
}

.faq__content  {
    display: none;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
    padding: 8px;
}

.minusbutton {
    display: none;
}

button {
    border: none;
    background: transparent;
}

.height {
    min-height: 200px;
}

.container {
  width: 80vw;
}

.button-1 {
   position: fixed;
   right: 10px;
   bottom: 20px;
   border: none;
   border-radius: 20px;
   cursor: pointer;
   z-index: 9999;
   background-color: none;
}

.arrow {
     width: 25px;
     height: 25px;
}


@media (max-width: 768px) {
    .registry__main {
        grid-template-columns: 1fr; /* Change to a single column for tablets */
    }
}

/* Media query for mobile screens */
@media (max-width: 480px) {
    .registry__main {
        grid-template-columns: 1fr; /* Change to a single column for mobile screens */
        gap: 2%; /* Adjust gap for smaller screens if needed */
    }

    .title {
       font-size: 30px;
    }
}
