<style>
body{
margin:0;
font-family: 'Poppins', sans-serif;
background:#f8f9fa;
color:#202124;
}
.main-header {
  background: #000;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #0f9d58;
  font-size: 22px;
  font-weight: bold;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #0f9d58;
}

.menu-toggle {
  display: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
}

/* MOBILE */
@media(max-width:768px) {
  
  nav {
    position: absolute;
    top: 65px;
    right: 0;
    background: #111;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none;
  }
  
  nav a {
    margin-bottom: 15px;
  }
  
  .menu-toggle {
    display: block;
  }
}
.container{
max-width:1100px;
margin:auto;
padding:40px 20px;
}
.hero{
display:flex;
gap:40px;
flex-wrap:wrap;
align-items:center;
}
.hero img{
width:160px;
border-radius:30px;
box-shadow:0 8px 25px rgba(0,0,0,0.1);
}
.hero-info h1{
margin:0;
font-size:34px;
}
.rating{
color:#ffb400;
margin-top:5px;
}
.btn{
display:inline-block;
padding:14px 32px;
border-radius:10px;
font-weight:600;
text-decoration:none;
margin-top:15px;
}
.download{
background:#34A853;
color:white;
}
.blog{
background:#1a73e8;
color:white;
margin-left:10px;
}
.info-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:20px;
margin-top:30px;
}
.info-box{
background:white;
padding:20px;
border-radius:12px;
text-align:center;
box-shadow:0 4px 15px rgba(0,0,0,0.05);
}
.section{
margin-top:50px;
}
.section h2{
margin-bottom:20px;
}
.screenshots{
display:flex;
gap:15px;
overflow-x:auto;
}
.screenshots img{
width:220px;
border-radius:15px;
}
footer{
margin-top:60px;
background:#ffffff;
padding:25px;
text-align:center;
border-top:1px solid #ddd;
}
@media(max-width:768px){
.hero{
flex-direction:column;
text-align:center;
}
.blog{
margin-left:0;
display:block;
margin-top:10px;
}
}
</style>