body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #f5f7fa, #c3cfe2);
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: #007aff;
  text-decoration: none;
  font-weight: 500;
}

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

.top-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-menu a {
  color: #333;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1rem;
  font-weight: 500;
}

.top-menu a:hover {
  color: #007aff;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown-content a {
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #007aff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

nav ul {
  list-style-type: none; /* Remove dots from list items */
  padding-left: 10px;
}

nav ul li {
  margin-bottom: 5px; /* Add spacing between items */
}

.content {
  margin: 15px;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.app-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.app-info .icon {
  width: 150px;
  height: 150px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-right: 20px;
}

.app-info .text {
  flex: 1;
}

.app-info .text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.app-info .text p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
}

.download-button img {
  width: 140px;
  height: 42px;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-top: 20px;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #f1f1f1;
}

.footer a {
  color: #007aff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.9rem;
}

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