 *{ margin: 0;
    padding: 0;
    box-sizing: border-box;
    margin-left: 2px;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #faf9f6;
    color: #222;
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
    margin: 0;
    justify-content: center;
  }
  .container{
    width: 100%;
    max-width: 1200px;
    padding:0 1rem ;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #fff;
    box-shadow:  0 2px 4px rgba(0,0,0,0.1);;
    position: sticky;
    top: 0;
    width: 100%;
    max-width:1200px;
    z-index: 1000;
  }
  
  header h1 {
    font-size: 1.2rem;
    color: #0b3c49;
  }
  
  nav {
    gap: 1rem;
    display: flex;
  }
  
  nav a {
    text-decoration: none;
    color: #0b3c49;
    font-weight: 600;
  }
  
  nav a:hover {
    color: #0077b6;
  }
  
  .hamburger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
  }
  
  .dark-toggle {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
  }
  body.dark-mode .hamburger{
    color: #fff;
  }
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 1.5rem;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .shalom-img{
    width: 200px;
    height: 150px;
    border-radius: 15px;
  }
  .snd-p{
    font-weight: bold;
    color: #111;
  }
  .hero-text {
    flex: 1;
  }
  
  .hero-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .hero img {
    max-width: 300px;
    border-radius: 12px;
    flex-shrink: 0;
  }
  .grid{
    display: flex;
    gap: 1.5em;
    justify-content: space-between;
    color: #111;
  }
  .card{
    background: #fff;
    padding: 1.5rem;
    flex: 1;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    max-width: 400px;
  }
  .story{
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
.newsletter{
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    max-width: 400px;
    color: #111;
}
h2{
  color: #0077b6;
}
footer{
    background: #0b3c49;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}
body.dark{
    background:#111;
    color: #eee;

}
body.dark header{
    background: #222;
}
body.dark.card
body.dark.newsletter{
    background: #222;
    color: #eee;
}
@media(max-width: 768px) {
    .grid{
        flex-direction: row;
    }
nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 1rem;
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
}
nav.active {
    display: flex;
}
.hamburger {
    display: block;
}
}
.payment-info{
  background: #faf9f6;
  line-height: 1.2;
  color: #222;
  margin: 0;
  justify-content: center;
}
button{
  background: #0077b6;
  color: #222;
  width: 100px;
  height: 40px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: bold;
}
.whatsapp-btn {
  display: inline-block;
  padding: 8px 14px;
  background: #25d366;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.whatsapp-btn :hover {
 background-color: #1ebe5b;
}
.download-btn {
  display: inline-block;
  padding: 8px 14px;
  background: #007bff;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 16px;
  transition: background 0.3s ease;
}

.download-btn:hover{
 background: #0056b3;
}