:root {
  --primary-color: #5c6b5e;
  --dark-color: #a89f95;
  --light-color: #ffffff;
  --title-color: #f7f2e5;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  background-color: var(--dark-color);
  color: var(--light-color);
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
}

.hero {
  background-color: var(--primary-color);
  text-align: center;
  padding: 4rem 1rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #333;
}

.btn.ios img,
.btn.android img {
    width: 48px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.features {
  background-color: #111;
  padding: 4rem 1rem;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--title-color);
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 20px 0;
}

.feature-list.odd h3,
.feature-list.odd p {
  text-align: right;
}
.feature-list.even h3,
.feature-list.even p {
  text-align: left;
}
.feature-list.odd .feature.img {
  text-align: left;
}
.feature-list.even .feature.img {
  text-align: right;
}
.feature img {
  width: 150px;
}
.feature h3 {
  color: var(--title-color);
}

.footer {
  background-color: #0a0a0a;
  text-align: center;
  padding: 2rem 1rem;
}

.footer .social a {
  margin: 0 0.5rem;
  color: var(--title-color);
  text-decoration: none;
}

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

.logos {
  width: fit-content;
  margin: 0 auto 30px auto;
}
.logos img {
  height: 90px;
  margin: 0 10px;
  display: inline-block;
}

@media (min-width: 768px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
