/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Navigation Bar Styling */
nav {
  background-color: #3498db;
  padding: 10px 0;
  text-align: center;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline;
  margin: 0 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

nav a:hover {
  color: #ffdd57;
}

/* About Section Styling */
section#about {
  padding: 50px 20px;
  background-color: #ffffff;
  text-align: center;
}

section#about h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #e74c3c;
}

section#about h2 {
  font-size: 28px;
  margin-top: 40px;
  color: #3498db;
}

section#about p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 18px;
}

/* Footer Styling */
footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
