body {
  font-family: Arial, sans-serif;
  background-color: #F4F9FF;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  height: 96px;
  display: flex;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-weight: bold;
  font-size: 24px;
  background: linear-gradient(to right, #17D1FF, #B412FF);
  -webkit-background-clip: text;
  color: transparent;
}

.logo-icon {
  width: 48px;
  height: 48px;
}

@media (min-width: 1024px) {
  .logo {
    font-size: 36px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
  }
}

.main-content {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .main-content {
    margin-top: 50px;
  }
}

.app-name {
  font-size: 4.5rem;
  /* margin-bottom: 16px; */
  background: linear-gradient(to right, #17D1FF, #B412FF);
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
  margin-block-start: 0;
  margin-block-end: 0;
}

@media (min-width: 1024px) {
  .app-name {
    font-size: 4.5rem;
  }
}

.app-slogan {
  color: #475569;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75rem;
  /* margin-bottom: 32px; */
  text-align: center;
}

.app-description {
  color: #475569;
  font-size: 16px;
  margin-bottom: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .app-description {
    font-size: 1.1rem;
  }
}

.download-buttons {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

@media (min-width: 1024px) {
  .download-buttons {
    /* justify-content: flex-start; */
    flex-direction: row;
  }
}

.download-button {
  color: white;
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 9999px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  height: 45px;
  justify-content: center;
  /* background: linear-gradient(to right, #17D1FF, #B412FF); */
  background: #5e29ff;
  border: none;
  cursor: pointer;
  width: 80%;
}

.download-button.secondary {
  background-color: #FFFFFF;
  border: 1px solid #5e29ff;
  color: #5e29ff;
}

@media (min-width: 1024px) {
  .download-button {
    width: auto;
    font-size: 18px;
    padding: 0.75rem 2rem;
  }
}

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

.download-button.secondary img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(85%) saturate(3421%) hue-rotate(244deg) brightness(97%) contrast(93%);
}

.download-button span {
  padding-left: 8px;
}

.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.feature-image {
  width: 100%;
  max-width: 400px;
  margin-bottom: 80px;
}

.feature-image img {
  width: 90%;
  height: auto;
}

.feature-list {
  width: 100%;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}

@media (min-width: 1024px) {
  .features {
    flex-direction: row;
    align-items: flex-start;
    margin-top: 100px;
  }

  .feature-image {
    /* width: 33.333%; */
    width: 350px;
    height: 620px;
    /* padding-right: 100px; */
    margin-bottom: 0;
  }

  .feature-list {
    /* width: 66.667%; */
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}

.feature-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  background: linear-gradient(to right, #17D1FF, #B412FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-subtitle {
  font-size: 16px;
  color: #475569;
}

footer {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px;
  background-color: #2B2B2B;
}

footer span {
  color: white;
  font-size: 14px;
}

.footer-content {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  padding: 0.5rem 1rem;
  align-items: center;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: auto;
}

.feedback-link {
  color: #3DA2FF;
  text-decoration: none;
}

.feedback-link:hover {
  text-decoration: underline;
}

.footer-item {
  color: #c7d2e1;
  font-size: 14px;
  margin: 14px auto;
}

.footer-spacer {
  margin: 0 8px;
}
.footer-spacer::after {
  content: "|";
}

.footer-copyright {
  color: #c7d2e1;
  font-size: 12px;
}