body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

h1,
h2,
h3 {
  color: #2c3e50;
  text-align: center;
}

h2 {
  margin-top: 40px;
}

p {
  font-size: 16px;
  margin-bottom: 15px;
}

.header {
  background-color: #48b96a;
  color: white;
  padding: 30px 0;
  text-align: center;
}

.header h1 {
  margin: 0;
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav {
  margin-top: 20px;
}

nav ul {
  list-style-type: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.section {
  background-color: white;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section h2 {
  margin-bottom: 15px;
  font-size: 30px;
  color: #2980b9;
}

.feature-list {
  margin-top: 20px;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 10px;
  list-style-type: disc;
  margin-left: 20px;
}

.integration-section {
  background-color: #ecf0f1;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.integration-section h2 {
  margin-bottom: 15px;
  color: #27ae60;
}

.integration-list {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding-left: 0;
}

.integration-list li {
  margin: 0 20px;
  font-size: 18px;
}

.footer {
  background-color: #34495e;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.footer p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .integration-list {
    flex-direction: column;
    align-items: center;
  }

  .integration-list li {
    margin-bottom: 10px;
  }
}

.nav-buttons {
  position: absolute;
  top: 30px;
  right: 30px;
}

.nav-buttons a,
.nav-buttons button {
  background-color: white;
  color: #48b96a;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-left: 10px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-buttons a:hover,
.nav-buttons button:hover {
  background-color: #48b96a;
  color: white;
}
