*{
    margin: 0;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    color: white;
}
.body{
    color: white;
}
.header{
    width: 100%;
    height: 100vh;
    background-image:linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(IN-en-20230911-popsignuptwoweeks-perspective_alpha_website_large.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 10px 8%;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between  ;
    padding: 10px 0;
}
.logo{
    width: 150px;
    cursor: pointer;
}
nav button{
    border: 0;
    outline: 0;
    background: #db0001;
    color: white;
    font-size: 12px;
    padding: 8px 20px;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
}
.button-yet:hover{
    background-color: rgb(189, 49, 58);
    border: 2px solid red;
}
.but-logo{
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 2px solid white;
    padding: 7px 10px;
}
.heading{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    margin-top: 100px; 
}
.heading h1{
    font-size: 60px;
    line-height: 65px;
    font-weight: 600;
    max-width: 800px;
}
.heading h3{
    font-weight: 400;
    margin-bottom: 20px;
}
.email-signup{
    background: #fff;
    display: flex;
    border-radius: 4px;
    align-items: center;
    margin-top: 30px;
    overflow: hidden;
}
.email-signup input{
    flex: 1;
    border: 0;
    outline: 0;
    margin-left: 20px;
}
.email-signup button{
    background-color: #db0001;
    border: 0;
    outline: 0;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 15px 30px;
}
.features{
    padding: 50px 12%;
    font-size: 22px;
}
.row{
    padding: 50px 0%;
    display: flex;
    flex-wrap:wrap;
    align-items: center;
    width: 100%;
}
.text-col2{
    flex-basis: 50%;
    margin-bottom: 20px;
}
.img-col{
    flex-basis: 50%;
    margin-bottom: 20px;
}
.img-col img{
    display: block;
    width: 90%;
    margin: auto;
}
.features h2{
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}
.faq{
    padding: 10px 12%;
    text-align: center;
    font-size: 18px;
}
.faq h2{
    font-weight: 500;
    font-size: 40px;
}
.list{
    margin: 60px auto;
    width: 100%;
    max-width: 750px;
}
.list li{
    list-style: none;
    width: 100%;
    padding: 5px;
}
.list li label{
    display: flex;
    align-items: center;
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    background: #303030;
    margin-bottom: 2px;
    cursor: pointer;
    position: relative;
}
label::after{
    content: '+';
    font-size: 35px;
    position: absolute;
    right: 20px;
    transition: transform 0.5s; 
}
input[type="radio"]{
    display: none;
}
.list .content{
    background: #303030;
    text-align: left;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-heigth 0.5s, padding 0.5s;
}
.list input[type="radio"]:checked + label + .content{
    max-height: 600px;
    padding: 30px 20px;     
}
.list input[type="radio"]:checked + label::after{
    transform: rotate(15deg);
}
.faq .email-signup{
        max-width: 600px;
        margin: 20px auto 60px;
}
.faq small{
    font-size: 13px;
}
.footer{
    padding: 50px 15% 10px;
    border-top: 6px solid #333;
    color: #777;
    display: flex;
    justify-content: space-evenly;
}
.footer h2{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
}
.footer ul{
    margin-top: 20px;

}
.footer ul a{
    display: block;
    font-size: 1rem;
    margin-top: 10px;
    color: white;
    justify-content: space-evenly;
    align-items: center;
}