* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #e0f7e9;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #2e7d32;
  color: white;
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
}

main {
  padding: 10px;
  width: 90%;
  max-width: 900px;
  margin: auto;
}

section {
  padding: 20px;
  margin: 20px 0;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #388e3c;
  margin-bottom: 10px;
}

button {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

button:hover {
  background-color: #388e3c;
}

.download {
  text-align: center;
}

footer {
  background-color: #2e7d32;
  color: white;
  padding: 15px;
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  position: relative;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-content a {
  color: #c8e6c9;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 10px;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
  background-color: #f1f8f5;
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #333;
}

.product-item .icon {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #388e3c;
}

.product-item strong {
  color: #388e3c;
  margin-right: 5px;
}

/* Responsive styles */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  .product-list {
    padding: 10px;
  }

  .product-item {
    font-size: 1rem;
  }

  .download button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.6rem;
  }

  .product-item .icon {
    font-size: 1.2rem;
    margin-right: 8px;
  }

  .product-item {
    font-size: 0.9rem;
  }
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #2e7d32;
  color: white;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.title {
  text-align: center;
  flex-grow: 1;
}

.title h1 {
  font-size: 2.5rem;
}

.social-icon img {
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {
  .title h1 {
    font-size: 2rem;
  }
  .logo {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .title h1 {
    font-size: 1.6rem;
  }
  .logo {
    width: 40px;
    height: 40px;
  }
}
