/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #121212;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #1e1e1e;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: #00bfa6;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #f5f5f5;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00bfa6;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #1e1e1e;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    border-left: 2px solid #00bfa6;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Sections */
.section {
  padding: 120px 20px 100px 20px;
  text-align: center;
}

.section h1, .section h2 {
  color: #00bfa6;
  margin-bottom: 20px;
}

/* Buttons */
.button {
  background-color: #00bfa6;
  color: #121212;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #02c9af;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 20px auto 0;
}

input, textarea {
  background-color: #1e1e1e;
  border: 1px solid #333;
  color: #f5f5f5;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

textarea {
  resize: none;
  height: 100px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #1e1e1e;
  border-top: 1px solid #333;
  margin-top: 50px;
}
