* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0f0f0f;
  color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #111;
  padding: 20px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
}

.btn {
  background: orange !important;
  border: 2px solid orange !important;
  color: #000 !important;
  transition: all 0.3s ease !important;
background: orange;
  padding: 10px 20px;
  border-radius: 5px;
  color: #000;
  font-weight: bold;
  border: 2px solid orange; /* required for hover outline */
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: transparent !important;
  color: orange !important;
}

.hero {
  padding: 80px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero img {
  max-width: 500px;
  border-radius: 10px;
}

section {
  padding: 60px 0;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.benefits {
  background: #141414;
}

.reviews .card {
  font-style: italic;
}

.cta {
  text-align: center;
  background: #111;
}

footer {
  background: #000;
  padding: 20px 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer a {
  color: #aaa;
  margin-left: 15px;
  text-decoration: none;
}

.hero-content {
  display: flex;
  align-items: center;  /* vertical center with the image */
  justify-content: space-between;
  gap: 40px;
}

.hero-content div {  /* the text & button wrapper */
  max-width: 50%;
}

.hero-content .btn {
  display: inline-block;
  margin-top: 20px;      /* space below the paragraph */
  padding: 12px 24px;
  font-size: 1rem;
  background-color: orange;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .hero-content {
    flex-direction: column; /* stack text & image */
    text-align: center;
  }

  .hero-content img {
    max-width: 90%; /* shrink image */
    margin: 20px auto 0;
  }

  .featured .grid {
    grid-template-columns: 1fr; /* one card per row */
  }

  .btn {
    margin: 20px 0 0; /* spacing for mobile */
  }
}