/* Reset */
body, h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Header Layout */
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 50px;
}

.site-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
}

/* User Controls */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-right button {
  background-color: #ccc;
  color: #000;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.header-right button:hover {
  background-color: #bbb;
}

/* Menu */
nav.menu {
  background-color: #e0e0e0; /* light gray */
}

.menu-list {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.menu-list > li {
  position: relative;
}

.menu-list > li > a {
  display: block;
  padding: 12px 16px;
  color: #333;          /* dark gray text */
  font-weight: bold;    /* bold text */
  text-decoration: none;
}

.menu-list > li > a:hover {
  background-color: #d0d0d0;
}

/* Dropdown Menu */
ul.dropdown {
  display: none;
  position: absolute;
  background-color: #e0e0e0;
  list-style: none;
  margin: 0;
  padding: 0;
  top: 100%;
  left: 0;
  min-width: 180px;
  z-index: 1000;
  border: 1px solid #ccc;
}

ul.dropdown li a {
  display: block;
  padding: 10px 16px;
  color: #333;
  font-weight: bold;    /* bold dropdown */
  text-decoration: none;
}

ul.dropdown li a:hover {
  background-color: #d0d0d0;
}

.menu-list li:hover > ul.dropdown {
  display: block;
}

/* Main Layout */
main {
  padding: 40px 20px;
}

.features, .audience, .call-to-action {
  margin-bottom: 40px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.feature {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  flex: 1;
  min-width: 250px;
}

/* CTA Buttons */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #444;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.button.outline {
  background-color: transparent;
  border: 2px solid #444;
  color: #444;
}
.red-bold {
  color: red;
  font-weight: bold;

  .top-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 10px 0;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
}

.top-menu li {
  display: inline;
}

.top-menu a {
  text-decoration: none;
  color: #333;
}

.top-menu a:hover {
  color: blue;
}

}
/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #e0e0e0; /* light gray */
  color: #333;               /* dark gray text */
  font-size: 14px;

  .work-process-intro {
  padding-left: 2rem;  /* You can adjust to 1rem, 3rem, etc. */
  padding-right: 2rem;
  margin-bottom: 1.5rem;
}
}