body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background-color: #f8f8f8;
}

header {
  background: #111;
  color: white;
  padding: 1rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2rem;
  background: #222;
  color: white;
}

.hero-content {
  flex: 1;
  min-width: 300px;
}

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

.hero-image img {
  max-width: 100%;
  border-radius: 12px;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #e91e63;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}

.features {
  padding: 2rem;
  background: white;
  text-align: center;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  margin: 1rem 0;
  font-size: 1.2rem;
}

.support {
  padding: 2rem;
  max-width: 600px;
  margin: auto;
  background: white;
}

.support form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support input,
.support textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.support button {
  padding: 0.75rem;
  background: #e91e63;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  color: white;
}

.icon-img {
  width: 150px;
  height: 150px;
  object-fit: contain; /* Optional: maintains aspect ratio without cropping */
}

