* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #0b0b0c;
  color: #eaeaea;
  line-height: 1.6;
}

/* NAV */

.nav {
  position: sticky;
  top: 0;
  background: #111;
  border-bottom: 1px solid #39ff14;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: auto;
  height: 90px;
}

nav a {
  margin-left: 20px;
  color: #eaeaea;
  text-decoration: none;
}

nav a:hover {
  color: #39ff14;
}

/* HERO */

.hero {
  padding: 100px 5%;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  max-width: 600px;
  color: #a0a0a0;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.hero-tags span {
  display: inline-block;
  margin-top: 15px;
  margin-right: 10px;
  color: #39ff14;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
   .hero-content{
       flex-direction: column;
       text-align: center;
   }
}

.hero-content {
    display: flex;
    align-items: center;      /* vertically aligns image and text */
    justify-content: space-between;
    gap: 3rem;                /* space between them */
}

.hero-text {
    flex: 1;                  /* takes remaining space */
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    display: block;
}

/* SECTIONS */

.section {
  padding: 80px 5%;
}

.section.alt {
  background: #111;
}

h2 {
  margin-bottom: 30px;
}

/* GRID */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* CARDS */

.card {
  background: #141416;
  padding: 20px;
  border: 1px solid #222;
}

.card:hover {
  border-color: #39ff14;
}

.price {
  color: #39ff14;
  font-weight: bold;
  margin: 10px 0;
}

.card ul {
  list-style: none;
  margin: 10px 0;
}

.card li {
  margin-bottom: 5px;
  color: #cfcfcf;
}

.note {
  font-size: 0.9rem;
  color: #888;
  margin: 10px 0;
}

button {
  background: #39ff14;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: bold;
}

/* CONTACT */

.contact-box {
  margin: 20px 0;
}

.contact-btn {
  display: inline-block;
  margin-right: 10px;
  padding: 10px 15px;
  border: 1px solid #39ff14;
  color: #39ff14;
  text-decoration: none;
}

/* FORM */

.form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  background: #0b0b0c;
  border: 1px solid #222;
  color: #fff;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 30px;
  color: #666;
}
