*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:"Tahoma",sans-serif;
}

body{
background:#eef3f7;
color:#222;
direction:rtl;
}

.hero{
background:linear-gradient(135deg,#0b7d3b,#149647);
color:white;
padding:35px 20px;
box-shadow:0 5px 20px rgba(0,0,0,.2);
}

.top{
display:flex;
align-items:center;
justify-content:center;
gap:25px;
flex-wrap:wrap;
}

.logo{
width:120px;
height:120px;
border-radius:50%;
background:white;
padding:5px;
box-shadow:0 5px 15px rgba(0,0,0,.25);
}

.title{
text-align:center;
}

.title p{
font-size:15px;
opacity:.9;
}

.title h1{
margin-top:10px;
font-size:38px;
font-weight:bold;
}

.title h2{
margin:12px 0;
font-size:26px;
color:#ffe08a;
}

.title span{
font-size:18px;
}

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

h3{
color:#0b7d3b;
font-size:28px;
margin:35px 0 20px;
padding-right:12px;
border-right:6px solid #0b7d3b;
}

.card{
background:white;
border-radius:18px;
padding:22px;
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:18px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.card h4{
font-size:24px;
margin-bottom:8px;
}

.card p{
color:#666;
}

.card a{
background:#0b7d3b;
color:white;
padding:12px 28px;
border-radius:10px;
text-decoration:none;
font-weight:bold;
font-size:17px;
transition:.3s;
}

.card a:hover{
background:#085d2b;
}

footer{
margin-top:50px;
padding:30px;
text-align:center;
background:white;
color:#666;
}

@media(max-width:768px){

.logo{
width:90px;
height:90px;
}

.title h1{
font-size:28px;
}

.title h2{
font-size:20px;
}

.card{
flex-direction:column;
text-align:center;
gap:18px;
}

.card h4{
font-size:22px;
}

.card a{
width:100%;
}

}