* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #061b33;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  font-size: 26px;
}

.logo span {
  color: #f5b400;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 25px;
  font-weight: bold;
}

nav a:hover {
  color: #f5b400;
}

.hero {
  min-height: 85vh;
  background: linear-gradient(rgba(6, 27, 51, 0.8), rgba(6, 27, 51, 0.8)),
              url("images/consultancy.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-content {
  max-width: 750px;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  background: #f5b400;
  color: #061b33;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 45px;
  color: #061b33;
}

.grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.highlight {
  background: #061b33;
  color: #fff;
}

.service-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card h3,
.why h3 {
  color: #061b33;
  margin-bottom: 12px;
}

.services {
  background: #f7f9fc;
}

.why {
  background: #061b33;
  color: #fff;
}

.why .section-title,
.why h3 {
  color: #f5b400;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.industry-list span {
  background: #061b33;
  color: #fff;
  padding: 14px 25px;
  border-radius: 30px;
  font-weight: bold;
}

.contact {
  background: #f7f9fc;
}

form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  width: 100%;
  padding: 15px;
  background: #061b33;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #f5b400;
  color: #061b33;
}

footer {
  background: #061b33;
  color: #fff;
  text-align: center;
  padding: 20px;
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
  }

  nav {
    margin-top: 15px;
  }

  nav a {
    display: inline-block;
    margin: 8px;
  }

  .hero h2 {
    font-size: 34px;
  }

  .grid,
  .contact-grid,
  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
}