*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#000;
}

.hero{
    position:relative;
    min-height:100vh;
    background:url('../images/senior-couple.png');
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

.header{
    padding:25px 0;
}

.logo{
    color:#d14f4f;
    text-decoration:none;
    font-size:42px;
    font-weight:700;
}

.logo span{
    color:#fff;
}

.hero-content{
    min-height:70vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-text{
    width:60%;
    color:#fff;
}

.hero-text h1{
    font-size:60px;
    margin-bottom:25px;
    line-height:1.2;
}

.hero-text p{
    font-size:22px;
    line-height:1.8;
    max-width:650px;
}

.signup-box{
    width:380px;
    background:rgba(0,0,0,.55);
    border:1px solid rgba(255,255,255,.08);
    padding:35px;
    text-align:center;
}

.signup-box h2{
    color:#fff;
    font-size:48px;
    margin-bottom:25px;
}

.signup-box h2 span{
    color:#d14f4f;
}

.btn{
    display:block;
    text-decoration:none;
    padding:18px;
    margin-bottom:15px;
    border-radius:8px;
    font-size:24px;
    font-weight:600;
    transition:.3s;
}

.woman-btn{
    background:#d14f4f;
    color:#fff;
}

.man-btn{
    background:#ffffff;
    color:#222;
}

.btn:hover,
.store-btn:hover{
    transform:translateY(-3px);
}

.app-downloads{
    margin-top:20px;
}

.store-btn{
    display:block;
    text-decoration:none;
    background:#222;
    color:#fff;
    padding:14px;
    margin-bottom:12px;
    border-radius:6px;
    transition:.3s;
}

.steps{
    display:flex;
    justify-content:space-between;
    padding:40px 0;
    color:#fff;
    text-align:center;
}

.step{
    width:32%;
}

.circle{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:rgba(255,255,255,.25);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:36px;
    margin-bottom:15px;
}

.step h3{
    font-size:28px;
    margin-bottom:10px;
}

.step p{
    color:#ddd;
}

.footer{
    position:relative;
    padding:25px 0;
    text-align:center;
}

.footer-line{
    height:1px;
    background:rgba(255,255,255,.2);
    margin-bottom:20px;
}

.footer p{
    color:#bdbdbd;
    font-size:16px;
}

.back-top{
    position:absolute;
    right:0;
    bottom:10px;
    width:50px;
    height:50px;
    background:#d14f4f;
    color:#fff;
    text-decoration:none;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    border-radius:4px 4px 0 0;
}

/* Tablet */

@media(max-width:991px){

.hero-content{
    flex-direction:column;
    text-align:center;
    padding:40px 0;
}

.hero-text{
    width:100%;
}

.hero-text h1{
    font-size:48px;
}

.signup-box{
    width:100%;
    max-width:420px;
}

.steps{
    flex-direction:column;
    gap:30px;
}

.step{
    width:100%;
}

}

/* Mobile */

@media(max-width:768px){

.logo{
    display:block;
    text-align:center;
    font-size:30px;
}

.hero-text h1{
    font-size:36px;
}

.hero-text p{
    font-size:18px;
}

.signup-box h2{
    font-size:38px;
}

.btn{
    font-size:20px;
}

.circle{
    width:75px;
    height:75px;
    font-size:28px;
}

.footer p{
    font-size:14px;
}

.back-top{
    width:42px;
    height:42px;
}

}