
body {
    margin: 0;
    font-family: sans-serif;
    background: #fff8f0;
    color: #111;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
.container {
    max-width:1200px;
    margin: 0 auto;
    padding: 0 20px;
}
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
}
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 10%;
}
.hero-text h1 {
    font-size: 48px;
    margin: 0 0 20px;
}
.hero-text p {
    font-size: 20px;
    margin-bottom: 20px;
}
button {
    background: #f44336;
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.hero-image img {
    width: 300px;
}
.features {
    display: flex;
    justify-content: space-around;
    padding: 40px 10%;
}
.feature {
    text-align: center;
}
.feature img {
    width: 40px;
    margin-bottom: 10px;
}
.buy-btn {
  background-color: #f4c531;
  border: none;
  color: black;
  padding: 12px 24px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.buy-btn:hover {
  background-color: #ffd84d;
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.container {
    max-width:1200px;
    margin: 0 auto;
    padding: 0 20px;
}