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

body {
  background-color: #0e0e0e;
  color: #f5f5f5;
  font-family: 'Arial', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #0e0e0e;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
}

.logo img {
  height: 150px;
  margin-right: 10px;
}

.nav a {
  margin-left: 30px;
  color: #ccc;
  text-decoration: none;
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
}

.nav a.active,
.nav a:hover {
  color: #fff;
  border-bottom: 2px solid #fff;
}

/* Main */
.main-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
}

.about {
  max-width: 600px;
}

.about h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.about p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}


.about ul {
  margin-top: 10px;
  margin-left: 20px;   /* NEW: adds visible left offset */
  padding-left: 10px;  /* smaller indent inside the list */
}

.about li {
  margin-bottom: 10px;
  line-height: 1.6;
}


/* Footer */
.footer {
  background-color: #0e0e0e;
  padding: 40px 20px;
  color: #f5f5f5;
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-inner h2 {
    text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
  color: #f5f5f5;
}

.footer-inner #email {
  font-size: 14px;
  color: #f5f5f5;
}

.footer-inner #email a {
  color: #f5f5f5;
  text-decoration: none;
}

.footer-inner #email a:hover {
  text-decoration: underline;
}





/* Responsive */
@media (max-width: 768px) {
  .header, .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 30px;
  }

  .nav {
    margin-top: 10px;
  }

  .nav a {
    margin: 0 15px 0 0;
  }

  .main-content {
    padding: 30px;
  }
}
