/* ===== Laqta Guide ===== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Cairo',sans-serif;

background:linear-gradient(180deg,#eef5ff,#ffffff);

color:#222;

direction:rtl;

line-height:1.9;

}

.header{

background:#003D80;

padding:30px 20px;

text-align:center;

border-radius:0 0 25px 25px;

box-shadow:0 10px 30px rgba(0,0,0,.12);

margin-bottom:35px;

}

.logo{

width:220px;

max-width:90%;

display:block;

margin:auto;

}

.container{

width:92%;

max-width:720px;

margin:auto;

padding-bottom:50px;

}

.hero{

text-align:center;

margin-bottom:35px;

}

.hero h1{

font-size:38px;

font-weight:800;

color:#003D80;

margin-bottom:18px;

}

.subtitle{

font-size:20px;

color:#555;

margin-bottom:30px;

}

.card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:0 18px 45px rgba(0,0,0,.12);

transition:.35s;

}

.card:hover{

transform:translateY(-6px);

}

.cover{

display:block;

width:100%;

}

.content{

padding:30px;

}

.content h2{

font-size:28px;

color:#003D80;

margin-bottom:20px;

}

.features{

list-style:none;

padding:0;

margin-bottom:30px;

}

.features li{

font-size:18px;

margin-bottom:12px;

}

.btn{

display:block;

text-align:center;

text-decoration:none;

font-weight:700;

padding:20px;

border-radius:14px;

margin-bottom:18px;

font-size:22px;

transition:.3s;

}

.download{

background:#0056d6;

color:#fff;

}

.download:hover{

background:#0047b2;

transform:scale(1.03);

}

.whatsapp{

background:#25D366;

color:#fff;

}

.whatsapp:hover{

background:#1faa55;

transform:scale(1.03);

}

.call{

background:#222;

color:#fff;

}

.call:hover{

background:#000;

transform:scale(1.03);

}

.info{

margin-top:30px;

padding:25px;

background:#eef5ff;

border-radius:18px;

}

.info h2{

font-size:28px;

color:#003D80;

margin-bottom:12px;

}

.info p{

font-size:18px;

color:#555;

}

.footer{

margin-top:35px;

text-align:center;

font-size:15px;

color:#777;

}

@media(max-width:768px){

.header{

padding:22px;

}

.logo{

width:170px;

}

.hero h1{

font-size:30px;

}

.subtitle{

font-size:17px;

}

.content{

padding:22px;

}

.content h2{

font-size:24px;

}

.features li{

font-size:16px;

}

.btn{

font-size:18px;

padding:18px;

}

.info h2{

font-size:23px;

}

.info p{

font-size:16px;

}

}