
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


.navbar {
  width: 100%;
  background: #0aa57f;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #ffe66d;
  text-decoration: underline;
}

.profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile .circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #0aa57f;
}


.content {
  padding: 100px 40px 40px; 
}

.content h1 {
  color: #0aa57f;
  margin-bottom: 10px;
}

.content p {
  color: #333;
  font-size: 16px;
  max-width: 600px;
}