body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-image: url('images/bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #faf6f3;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  color: #111;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 100vw;
  padding: 0 12px 0 12px;
}

.logo img {
  width: 300px;
  max-width: 80vw;
  margin-bottom: 8px;
  margin-top:25px;
}

.description {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.6;
}

.store-buttons {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.store-link img {
  height: 56px;
  width: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  background: #fff;
  padding: 0;
}

.app-logos {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 0;
}

.app-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  border: 2px solid #222;
  background: #fff;
  object-fit: contain;
  padding: 16px;
}

.footer {
  background: none;
  text-align: center;
  margin-top: 30px;
}

.footer-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.instagram-icon {
  width: 44px;
  height: 44px;
  vertical-align: middle;
}

.instagram-handle {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: middle;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}

.footer-address, .footer-phone {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}

@media (max-width: 700px) {
  .logo img {
    width: 250px;
  }
  .description {
    font-size: 1rem;
  }
  .store-link img {
    height: 44px;
  }
  .app-logo {
    width: 90px;
    height: 90px;
    padding: 8px;
  }
  .app-logos {
    gap: 18px;
  }
  .store-buttons {
    gap: 12px;
  }
  .footer-instagram {
    font-size: 1.1rem;
  }
  .instagram-icon {
    width: 28px;
    height: 28px;
  }
  .instagram-handle {
    font-size: 1.1rem;
  }
  .footer-address, .footer-phone {
    font-size: 1rem;
  }
}
