body {
  font-family: Arial, sans-serif;
  background: #F8F8F8;
  color: #333333;
}

/* HEADER (WHITE) */
header {
  background-color: #FFFFFF;
}

.navbar-brand img {
  height: 50px;
}

.navbar-nav .nav-link {
  color: #00526A !important;
  font-weight: bold;
}

/* HERO SECTION (BLUE WITH WHITE TEXT) */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: #00526A;
  color: white;
}

.hero h1 {
  color: white;
}

/* DOWNLOAD BUTTON */
.btn-download {
  background-color: #F68B1F;
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
}

/* SECTION HEADERS */
h2 {
  color: #00526A;
  border-bottom: 2px solid #F68B1F;
  padding-bottom: 10px;
  margin-top: 40px;
}

/* SCREENSHOTS SECTION */
.screenshots img {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* HERO SCREENSCHOTS SCROLLER */
.hero-screenshots {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: flex-start;
  gap: 20px;
  padding: 20px 0;
  margin: 30px 0;
  scrollbar-width: thin; /* Firefox */
}

.hero-screenshots img {
  flex: 0 0 auto;
  width: 300px;
  height: auto;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* FOOTER */
footer {
  background: #333333;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* LISTS */
ul, ol {
  padding-left: 20px;
}
