html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section,
summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  background-color: #f5f5f7;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Container for main content */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0;
}

/* ------------------------------
   HEADER & NAV
------------------------------ */
.header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

/* Logo + Brand Name inline */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.brand-name {
  color: #333;
  font-weight: 500;
  font-family: inherit;
  font-size: 1.1rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto; /* Push hamburger to the right */
}

/* Main nav */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #0071e3;
}

/* ------------------------------
   HERO SECTION
------------------------------ */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e2e3e5 0%, #f5f5f7 100%);
  text-align: center;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}

.hero-content {
  max-width: 600px;
  padding: 0 20px;
}

.hero-logo {
  max-width: 300px; /* Increased size */
  margin-bottom: 20px;
  width: 100%;
  height: auto;
}

/* Extra bold (Inter, weight 900) and larger size for the hero title */
.hero h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', sans-serif; /* Extra bold from Google Fonts */
  font-size: 6rem; /* doubled from 3rem */
  line-height: 1.1;
  margin: 0;
  color: #000;
  font-weight: 900; /* Extremely bold */
}

.hero h2 {
  font-size: 1.75rem;
  color: #555;
  margin: 10px 0 20px;
}

.tagline {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 30px;
}

/* Download Buttons */
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 20px;
}

.cta-button {
  display: inline-block;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;

  /* Same width for both buttons */
  width: 200px; 
  padding: 14px 0;
}

.ios-button {
  background-color: #0071e3; /* Apple-like blue */
}
.ios-button:hover {
  background-color: #005bb5;
}

.android-button {
  background-color: #3ddc84; /* Play Store green */
}
.android-button:hover {
  background-color: #2eb269;
}

/* ------------------------------
   CONTENT BLOCKS
------------------------------ */
.content-block {
  background-color: #fff;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.content-block h3 {
  font-size: 1.75rem;
  color: #0071e3;
  margin-bottom: 15px;
}

.content-block p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

ul {
  margin-top: 1rem;
  margin-left: 1.2rem;
  list-style-type: disc;
}

.cta-small {
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 18px;
  font-size: 0.9rem;
}

.contact-link {
  color: #007BFF; /* A standard blue color for links */
  text-decoration: none; /* Remove the default underline */
  font-weight: bold; /* Make the link text bold */
  transition: color 0.3s ease; /* Smooth color transition on hover */
}

.contact-link:hover {
  color: #0056b3; /* Darker blue on hover */
  text-decoration: underline; /* Add underline on hover */
}

/* ------------------------------
   FOOTER
------------------------------ */
.footer {
  background-color: #fff;
  text-align: center;
  padding: 20px;
  color: #999;
  font-size: 0.9rem;
  border-top: 1px solid #e2e2e2;
}

/* ------------------------------
   MEDIA QUERIES
------------------------------ */
@media (max-width: 768px) {
  .hamburger {
    display: block; /* Show hamburger on mobile */
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px;
    width: 200px; /* Set a fixed width for the mobile menu */
  }

  .main-nav.active ul {
    display: flex;
  }

  .hero h1 {
    font-size: 4rem; /* slightly smaller for tablets */
  }

  .download-buttons {
    flex-direction: column;
  }

  .cta-button {
    width: auto; /* allow them to shrink if needed */
    padding: 14px 30px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 3rem; /* smaller on phones */
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .content-block h3 {
    font-size: 1.4rem;
  }

  .content-block p {
    font-size: 0.95rem;
  }
}

            #map {
                height: 400px;
                width: 100%;
                margin-top: 20px;
                border-radius: 12px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }
            .address {
                margin-left: 20px; /* Indent the address */
            }

    .promotional-container {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .promotional-image {
        width: 150px;
        height: 282px;
        object-fit: cover;
    }
    .promotional-content {
        flex: 1;
    }
    @media (max-width: 768px) {
        .promotional-container {
            flex-direction: column;
            align-items: flex-start;
        }
    }
        .download-buttons.download-buttons-left {
            justify-content: flex-start; /* Left align when both classes are used */
        }