/* Global styles */

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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Header styles */

header {
  background-color: #4CAF50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

nav li {
  margin-right: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
}

nav a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Hero section styles */

#hero {
  background-image: linear-gradient(to bottom, #4CAF50, #f9f9f9);
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-size: 36px;
  color: #fff;
}

p {
  font-size: 18px;
  color: #000;
}

.btn-hero {
  background-color: #4CAF50;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.btn-hero:hover {
  background-color: #3e8e41;
}

/* Features section styles */

#features {
  background-color: #f9f9f9;
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin-bottom: 20px;
}

i {
  font-size: 24px;
  margin-right: 10px;
}

span {
  font-weight: bold;
}

p {
  font-size: 16px;
}

/* Pricing section styles */

#pricing {
  background-color: #f9f9f9;
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

th {
  background-color: #4CAF50;
  color: #fff;
}

td {
  background-color: #f9f9f9;
}

/* About section styles */

#about {
  background-color: #f9f9f9;
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* Footer styles */

footer {
  background-color: #4CAF50;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin-right: 10px;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-decoration: underline;
}
