/* Reset default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Basic font and body styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Header Section */
header {
  background-color: #2d3e50;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2em;
}

/* About Section */
#about {
  background-color: #fff;
  padding: 40px 20px;
  margin: 20px 0;
  border-radius: 8px;
}

#about h2 {
  font-size: 2em;
  color: #2d3e50;
  margin-bottom: 10px;
}

#about p {
  font-size: 1.1em;
  color: #666;
}

/* Features Section */
#features {
  background-color: #f9f9f9;
  padding: 40px 20px;
  margin: 20px 0;
  border-radius: 8px;
}

#features h2 {
  font-size: 2em;
  color: #2d3e50;
  margin-bottom: 20px;
}

#features ul {
  list-style-type: none;
  padding-left: 0;
}

#features li {
  font-size: 1.1em;
  margin-bottom: 15px;
}

#features li strong {
  color: #2d3e50;
}

/* Get Started Section */
#get-started {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
  margin: 20px 0;
  border-radius: 8px;
}

#get-started h2 {
  font-size: 2em;
  color: #2d3e50;
  margin-bottom: 20px;
}

#get-started p {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 20px;
}

/* Call-to-Action Button */
.cta-btn {
  background-color: #ff9f00;
  color: #fff;
  font-size: 1.1em;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #e68900;
}

/* Footer Section */
footer {
  text-align: center;
  background-color: #2d3e50;
  color: #fff;
  padding: 20px;
  margin-top: 40px;
  border-radius: 8px;
}

footer p {
  font-size: 1em;
}
