.logo {
  /* Ensure the logo does not exceed container width */
  max-width: 100%; 
}

#faq-btn {
  background: linear-gradient(white, white) padding-box,
              linear-gradient(to right, #3B82F680, #8B5CF680) border-box;
  border: 2px solid transparent;
  font-weight: bold;
  transition: background 0.3s ease, border-color 0.3s ease;
  padding: 0.5rem 1rem;
}

#faq-btn:hover {
  background: linear-gradient(white, white) padding-box,
              linear-gradient(to right, #3B82F6, #8B5CF6) border-box;
}

#landing {
    background-image: linear-gradient(to bottom, #3B82F640, #ffffff);
}

#landing-img img{
    height: 80%;
    box-shadow: 0 20px 20px -10px #000000b9;
}


.slogan {
    color: #686868;
}

@media (min-width: 1011px) {
    .container {
        padding: 24px 40px;
        width: 90%;

    }
}

/* Media query for screens smaller than 767px (e.g., smartphones) */
@media (max-width: 767px) {
    .container {
        /* padding: 1rem; */
        width: 90%;
    }
}

/* Media query for screens smaller than 767px (e.g., smartphones) */
@media (min-width: 767px) {
    .container {
        /* padding: 1rem; */
        width: 90%;
    }

        /* h1.description {
            font-size: 1rem;
        }
     */
}

@media (min-width: 425px) {
    /* h1.description {
        font-size: 1rem;
    } */

}

@media (max-width: 425px) {
    /* h1.description {
        font-size: 1rem;
    } */

}


@media (min-width: 1011px) {
    #result {
        padding: 0 24px;
    }

    /* h1.description {
        font-size: 1.25rem;
    } */

    
}

@media (max-width: 767px) {
    #result {
        /* padding: 1rem; */
        width: 100%;
    }
/* 
    .flex-col {
        flex-direction: column;
    } */

    
}

@media (max-width: 767px) {
    #comparison {
        text-align: center;
    }
}

html, body {
    text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern";
    font-kerning: normal;
    font-variant-ligatures: common-ligatures;
    font-family: Manrope, system-ui,'-apple-system','BlinkMacSystemFont','Segoe UI','Roboto','Helvetica Neue','Arial','Noto Sans','sans-serif','Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji';
    scrollbar-width: thin;
    height: 100%;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}

.hero-section {
    color: white;
    height: auto;
}

.description {
    padding: 1rem 1.5rem 0.2rem;
}

.compare-button {
    box-shadow: 0 10px 20px -10px #0000009c;
    transition: background-color 0.3s, transform 0.1s, box-shadow 0.3s;
}

.compare-button:hover {
    transform: translateY(-2px); /* Move the button up slightly on hover */
    box-shadow: 0 10px 20px -10px #000;
}


#faqs {
    max-width: 70rem;
    align-self: center;
    background-color: #F3F6FD;
    border-radius: 2rem;
    margin-left: 4rem;
    margin-right: 4rem;
    width: 90%;
}

#faqs span {
  text-align: left;
}

.faq-text {
  color: #8b5cf6;
}

.faq-button:hover .faq-text {
  color: #000;
}

.faq-button:hover {
  background-image: linear-gradient(to right, #3B82F640, #8B5CF640);
  padding: 1rem;
  border-radius: 1rem;
}

.faq-text-active {
  color: #000;
}

.faq-button-active {
  background-image: linear-gradient(to right, #3B82F640, #8B5CF640);
  padding: 1rem;
  border-radius: 1rem;
}

footer {
  justify-content: center;
  text-align: center;
  padding: 1rem 0;
  margin-top: auto;
}

.slide-up {
    opacity: 0;
    transform: translateY(50px); /* Adjust this value to control how high the element starts */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Button */

.scroll-top {
  position: fixed;
  bottom: 20px; /* Adjust the distance from the bottom of the page as desired */
  right: 20px; /* Adjust the distance from the right side of the page as desired */
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  color: #000000;
  border: none;
  cursor: pointer;
  z-index: 9999;
  transition: opacity 0.3s;
  opacity: 0.7;
}

.scroll-top:hover {
  opacity: 1;
}


