/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: linear-gradient(180deg, #e6f3ff 0%, #cfe7ff 100%);
  color: #333;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #4a90e2;
  padding: 1rem 2rem;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #a0c4ff, #bdb2ff);
  color: #222;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background: #4a90e2;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background: #357abd;
}

/* Content Sections */
.content {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  color: #222;
}

.content h2 {
  color: #4a90e2;
  margin-bottom: 1rem;
}

.content ul {
  list-style: none;
  padding-left: 0;
}

.content ul li {
  margin: 0.5rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.content ul li::before {
  content: "•";
  color: #4a90e2;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #4a90e2;
  color: white;
  margin-top: 2rem;
}
