body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f7;
  color: #111;
}

.top-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  background-color: white;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 100px;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.content {
  max-width: 500px;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.bold {
  font-weight: 700;
}

p {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
}

.app-icons {
  display: flex;
  gap: 15px;
}

.app-icons img {
  height: 50px;
  cursor: pointer;
}

.phone-preview {
  background: #f9f9f7;
}

.phone-preview img {
  max-width: 350px;
  width: 100%;
  height: auto;
  background: #f9f9f7;
}

@media (max-width: 1024px) {
  .container {
    padding: 40px 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .content {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .app-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  p {
    font-size: 16px;
  }

  .app-icons img {
    height: 40px;
  }

  .phone-preview img {
    max-width: 300px;
  }
}

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

  p {
    font-size: 14px;
  }

  .app-icons img {
    height: 35px;
  }

  .phone-preview img {
    max-width: 250px;
  }
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, #ff0000, #4b0082);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
  background: linear-gradient(90deg, #e60000, #3a006e);
  transform: translateY(-2px); 
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
