:root{
    --blue:#1f7df2;
    --blue-dark:#1156b8;
    --turquoise:#27b8ba;
    --pink:#ff5d79;
    --orange:#f7b733;
    --bg:#f4f8ff;
    --card:#ffffff;
    --text:#243447;
}

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

body{
    font-family:'Segoe UI',sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.7;
}

.container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

.btn{
    display:inline-block;
    background:var(--blue);
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:var(--blue-dark);
}

.section{
    padding:80px 0;
}

.card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

h1{
    font-size:3rem;
    margin-bottom:20px;
}

h2{
    font-size:1.5rem;
    margin-bottom:20px;
    color:var(--blue);
}

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#1f7df2,#4aa4ff);
    color:white;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.hero img{
    max-width:100%;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.feature{
    background:white;
    border-radius:20px;
    padding:30px;
    text-align:center;
}

.feature span{
    font-size:3rem;
}

.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.step{
    text-align:center;
}

.step-number{
    width:60px;
    height:60px;
    margin:auto;
    border-radius:50%;
    background:var(--pink);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:bold;
    margin-bottom:15px;
}

footer{
    background:#14356b;
    color:white;
    padding:50px 0;
    text-align:center;
}
.screenshot-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
    margin-top:20px;
}

.screenshot-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.screenshot-card img{
    width:auto;
    max-width:100%;
    max-height:500px;
    margin:auto;
    display:block;
    cursor:pointer;
    transition:transform .3s ease;
}

.screenshot-card img:hover{
    transform:scale(1.03);
}

.screenshot-text{
    padding:25px;
}

.screenshot-text h3{
    color:#1f7df2;
    margin-bottom:10px;
}

.screenshot-text p{
    line-height:1.6;
}
.faq-section{
   
}

.accordion{
    max-width:900px;
    margin:40px auto 0;
}

.accordion-item{
    margin-bottom:14px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    background:#fff;
}

.accordion-header{
    width:100%;
    border:none;
    background:#f7f9fc;
    padding:20px 24px;
    text-align:left;
    font-size:1.1rem;
    font-weight:600;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:.25s;
}

.accordion-header:hover{
    background:#eef5ff;
}

.accordion-header span{
    font-size:1.7rem;
    color:#1f7df2;
    transition:.25s;
}

.accordion-item.active .accordion-header span{
    transform:rotate(45deg);
}

.accordion-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
    background:white;
}

.accordion-content p{
    padding:0 24px 24px;
    margin:0;
    line-height:1.7;
}
@media(max-width:900px){

.hero-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.steps{
    grid-template-columns:1fr;
}

h1{
    font-size:2.2rem;
}
}


@media (max-width:768px){
    .card h2{
        font-size:1.3rem;
        line-height:1.3;
    }
	
	h2{
    font-size:1.3rem;
    margin-bottom:20px;
    color:var(--blue);
}
}