/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* BODY */
body {
  background: #f8fafc;
  color: #333;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

/* NAVBAR */
.navbar {
  background: white;
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  align-items: center;
}

/* LOGO */
.logo {
  width: 80px;
    /* height: 100%; */
}

/* HEADER */
.header {
  background: linear-gradient(to right, #2563eb, #3b82f6);
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.header h1 {
  font-size: 30px;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 16px;
  opacity: 0.9;
}

/* CONTENT */
.content {
  background: white;
  margin-top: -25px;
  border-radius: 16px 16px 0 0;
  padding: 30px 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

.content p {
  margin-bottom: 15px;
  font-size: 15px;
}
ul {
  padding-left: 20px;
}

li {
  list-style-position: inside;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .header h1 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 14px;
  }

  .logo {
    width: 80px;
    /* height: 100%; */
  }
}