/* Reset default spacing */
body, h1, h2, p, ul, li, form, input, textarea, button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #121212; /* Matte Black */
  color: #e0e0e0;
  line-height: 1.6;
}

/* Navigation */
header {
  background-color: #1f1f1f;
  padding: 1em 0;
}
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}
nav ul li {
  margin: 0 15px;
}
nav ul li a {
  text-decoration: none;
  color: #00a651; /* Matte Green */
  font-weight: bold;
  transition: color 0.3s;
}
nav ul li a:hover,
nav ul li a.active {
  color: #7cfc00; /* Lighter green accent */
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #121212, #1f1f1f);
}
.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #00a651;
}
.hero p {
  font-size: 1.2em;
  margin-bottom: 40px;
}
.cta-button {
  background-color: #00a651;
  color: #121212;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.cta-button:hover {
  background-color: #7cfc00;
}

/* Content Sections */
.content {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #1f1f1f;
  border-radius: 8px;
}
.content h1, .content h2 {
  margin-bottom: 20px;
  color: #00a651;
}
.content p {
  margin-bottom: 20px;
}

/* Form Styles */
form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 4px;
}
form button {
  background-color: #00a651;
  color: #121212;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
form button:hover {
  background-color: #7cfc00;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
  background-color: #1f1f1f;
  margin-top: 40px;
  color: #00a651;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5em;
  }
  nav ul {
    flex-direction: column;
  }
  nav ul li {
    margin: 10px 0;
  }
}