/* General Page Setup */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
}

/* Navbar */
.navbar {
  background: #222;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover {
  color: #00bcd4;
}

/* Hero Section */
h1 {
  text-align: center;
  margin-top: 40px;
  font-size: 2.5rem;
  color: #222;
}

p {
  text-align: center;
  max-width: 600px;
  margin: 10px auto;
  line-height: 1.6;
}

/* Buttons / Links */
a.button {
  display: inline-block;
  padding: 10px 20px;
  margin: 20px auto;
  background: #00bcd4;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

a.button:hover {
  background: #0097a7;
}

/* Section Titles */
h2 {
  text-align: center;
  margin: 40px 0 20px;
  color: #444;
}

/* Features Section */
.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.feature {
  background: white;
  padding: 20px;
  margin: 15px 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}