* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #111;
  color: #f0f0f0;
  text-align: center;
}

/* Header */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #1a1a1a;
}

.logo img {
  width: 50px;
  height: 50px;
}

/* Navigation */
ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  background: #222;
}

ul li {
  margin: 5px;
  position: relative;
}

ul a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #fff;
}

ul a:hover {
  background: #444;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #333;
  min-width: 150px;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  padding: 10px;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero / intro */
.hero {
  padding: 40px 20px;
}

.hero h1 {
  font-size: 2rem;
  margin: 20px 0;
}

.intro {
  font-size: 1.2rem;
}

.highlight {
  color: #00ffcc;
}

/* Sections */
.aboutbox, .form-page, #projectsContainer {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
}

.imgbox {
  flex: 1 1 200px;
  max-width: 150px;
}

.imgbox img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Footer */
footer {
  background: #1a1a1a;
  padding: 15px;
  margin-top: 40px;
}

.copyright {
  font-size: 0.9rem;
  color: #bbb;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  ul {
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
}
