.hero-logo {
  height: auto;
  width: 300px;
  max-width: 100%;
  margin-bottom: 0px;
  margin-top: 40px;
}body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f4f6f8;
  color: #333;
}

header.hero {
  position: relative;
  background: 
    url('bcg.png') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 60px 20px;
  text-align: center;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0;
  margin: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.brand-title {
  font-size: 64px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tagline {
  font-size: 20px;
  font-weight: 500;
  color: #ffcc00;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-button {
  background-color: #ff9900;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card i {
  font-size: 32px;
  color: #005599;
  margin-bottom: 10px;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.logo-row img {
  height: 40px;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.logo-row img:hover {
  filter: none;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background-color: #003366;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px;
}
.brand-list {
  text-align: left;
  max-width: 800px;
  margin: 20px auto;
  padding-left: 20px;
  list-style-type: none;
}

.brand-list li {
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.6;
}
.deliverables-list {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.deliverables-list li {
  margin-bottom: 0.75rem;
}
.deliverables-list {
  padding-left: 0;
  margin-left: 0;
  list-style-position: inside; /* Optional: aligns bullets with text */
}
.deliverables-list li {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.about-list {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 1rem;
  padding-left: 0;
  list-style-position: inside;
}

.about-list li {
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
#schedule-call {
  margin-top: 3rem;
  padding: 2rem;
  background-color: #f5f5f5;
  border-radius: 8px;
}

#schedule-call h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

#schedule-call p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #fff; /* or your preferred header color */
}

.nav-logo-img {
  height: 48px; /* adjust as needed */
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
}
.logo-top {
  text-align: center;
  margin-top: 0;
  padding-top: 8px;
  padding-bottom: 12px;
}
.logo-img {
  width: 70%;
  max-width: 480px; /* Optional: limits stretch on larger screens */
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .logo-img {
    width: 100%;
    max-width: none;
  }
}
footer a {
  color: #FFA500; /* orange to match your CTA */
  font-weight: 600;
  text-decoration: none;
}
nav {
  margin-bottom: 10px; /* Reduce from default or inherited spacing */
}
.hero-intro {
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #f0f0f0; /* Light tone for contrast on hero background */
}



