body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background-color: #f8f8f8;
}

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

main {
  flex: 1;
}


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 */
}


/* STORE BADGES */
.store-badges {
    display: flex;
    gap: 15px;
    padding: 20px;
    justify-content: center;
}

/* The Badge Button */
.store-badge {
    display: inline-flex;
    align-items: center;
    background-color: #000000;
    /* Black background */
    color: #ffffff;
    /* White text */
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    border: 1px solid #333;
    /* Subtle border for depth */
}

/* Hover effect */
.store-badge:hover {
    background-color: #222222;
    /* Slightly lighter black on hover */
}

/* SVG Icon styling */
.store-badge svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    /* Makes the Apple logo white */
    margin-right: 12px;
}

/* Text Layout */
.store-badge-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

/* "Download on the" text */
.store-badge-sub {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    /* Slightly softer white */
    line-height: 1.2;
}

/* "App Store" text */
.store-badge-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 1px;
}

