h2{
    font-size: 42px;
    line-height: 55px;
    max-width: 400px;
}
#waitlist{
    padding: 100px 0;
    background-image: url(../images/daisy_bg.png);
    background-repeat: no-repeat;
    background-position:300px center;
    background-size: contain;
}
#why_daisy{
    padding: 100px 0;
    background-image: url(../images/daisy_bg.png);
    background-repeat: no-repeat;
    background-position: -100px center;;
    background-size: contain;
}
.faq-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    cursor: pointer;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F7F9FC;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-caret {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
    background-color: #F7F9FC;
    border-top: 1px solid white;
    color:#6D6F7A;
    text-align: left;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* adjust depending on content */
    padding: 15px 25px;
}

.faq-item.active .faq-caret {
    transform: rotate(90deg);
}

form label {
    color: #9e9e9e;
    margin-top: 15px;
}
.bug {
    position: absolute;
    top: -50px;
    left: 60%;
    z-index: 100;
}

.stars {
    display: flex;
    gap: 4px;
    margin: 0 auto;
}
.cover-container{
   position: relative;

}
.cover_mob{
    position: absolute;
    right: -100px;
    width: 160px;

}
@media (max-width: 1024px) {
    .cover-container{
        padding: 30px!important;
    }
    .cover_mob{
     display: none;

    }
    h2 {
        font-size: 42px !important;
        text-align:center;
        margin: 0 auto;
    }
}

@media (max-width: 968px) {
    .btn{
        margin:0 auto;
        display: block;
        width: 160px;
    }
    .navbar-toggler {
        height: 70px;
        margin-right: 30px;
        width: auto;
    }
    /*.secondary_cta{*/
    /*    margin:0 auto;*/
    /*    display: block;*/
    /*}*/
    .icons_list li p{
        text-align: left;
        padding-left: 25px;
        font-size: 16px;
    }
    .info_blocks img {
        max-width: 80%;
    }
    #why_daisy{
        padding: 50px 0;
    }
    #why_daisy img {
        max-width: 60%;
        margin: 0 auto;
        display: block;
    }
    #why_daisy .col-md-12{
        padding: 0!important;
    }
    #waitlist{
        padding: 50px 0;
    }
    #waitlist .col-md-12:first-child{
        text-align: center;
    }
    h1{
        font-size: 60px!important;
    }
    .grey-bg-img{
        text-align: center;
    }
}
@media (max-width: 576px) {
    .icons_list{
       max-width: 300px;
        margin: 0 auto;
    }
}




.tabs {
    display: inline-flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #E7E7E7;
    margin-top: 30px;
}

.tab {
    padding: 10px 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    color: #9D9EA8;
    transition: 0.3s;
}

.tab.active {
    border-bottom: 1px solid #57B2B4;
    color: #212529;
    font-weight: 600;
}

.plan {
    background: white;
    border-radius: 14px;
    padding: 30px 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    width: 260px;
    transition: 0.3s;
}

.plan:hover {
    transform: translateY(-5px);
}

.plan h2 {
    color: #58b4a2;
    font-size: 40px;
    margin: 0;
}

.plan h2 span {
    color: #666;
    font-size: 16px;
    font-weight: normal;
}

.plan h3 {
    font-size: 20px;
    margin: 15px 0 10px;
}

.plan p {
    color: #7a7a7a;
    font-size: 15px;
}

.hidden {
    display: none;
}