html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

body {
  margin: 0;
  font-family: sans-serif;
  color: #1a1a1a;
  background: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  align-items: center;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
}

.logo {
  height: 60px;
}

.contact-link, .logo-text {
  color: #f90;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  box-sizing: border-box;
}

.hero-text {
  flex: 1 1 400px;
  max-width: 500px;
  padding-right: 40px;
}

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

.hero-image {
  flex: 1 1 300px;
  text-align: center;
}

.hero-image img {
  max-height: 650px;
  width: auto;
}

.download-buttons img {
  height: 65px;
  margin: 12px 0;
  display: block;
}

footer {
  text-align: center;
  padding: 20px;
  background: #f8f8f8;
  font-size: 0.9rem;
  color: #555;
}

footer a {
  color: #888;
  text-decoration: none;
}

.contact, .privacy {
  max-width: 600px;
  margin: 60px auto;
  padding: 0 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  padding: 12px;
  font-size: 1rem;
  background: #333;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #000;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.company-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1a1a1a;
}
