body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f9;
  color: #333;
 
}

header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #0b0b0b;
  color: white;
}
header .logo {
  width: 50px;
  margin-right: 10px;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background: url(images/15.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; 
}
.hero h2 {
  font-size: 3rem;
  color: white;
}
.hero p {
  font-size: 2rem;
  color: white;
}
.hero .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #0b0b0b;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}
.hero .btn:hover {
  background: #3a3e4c;
}

.features {
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  background: #eaeaea;
}
.feature {
  max-width: 250px;
  text-align: center;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  padding: 20px;
  background: #0b0b0b;
  color: white;
  text-align: center;
}

.footer-item p,
.footer-item a {
  margin: 5px 0;
  color: white;
  text-decoration: none;
}

.footer-item a:hover {
  text-decoration: underline;
}

/* Make the "All Rights Reserved" span the full width */
.footer-item.all-rights {
  grid-column: 1 / -1;
  margin-top: 10px;
  font-weight: bold;
}
