body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #F6F8FC;
  color: #222;
}
<header>
  <div class="header-content">
    <img src="KRA.jpg" class="header-logo" alt="KRA Consultant Logo" />
    <div class="header-text">
      <h1>KRA Consultant</h1>
      <h2>Trusted Labour & Construction Partner in Victoria & Australia</h2>
    </div>
  </div>
</header>

header {
  background: #0A4797;
  color: #fff;
  border-bottom: 6px solid #FF8300;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2em;
  min-height: 92px;
  box-sizing: border-box;
}
.header-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
  margin-right: 22px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(10,70,151,0.07);
}
.header-text h1 {
  margin: 0;
  font-size: 2.1em;
  color: #fff;
  line-height: 1.1;
}
.header-text h2 {
  margin: 7px 0 0 0;
  font-weight: 400;
  font-size: 1.13em;
  color: #F6F8FC;
  letter-spacing: 0.1px;
  line-height: 1.14;
}

/* Mobile responsiveness */
@media (max-width: 700px) {
  .header-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: unset;
    padding: 24px 0 16px 0;
  }
  .header-logo {
    margin: 0 0 10px 0;
    width: 48px;
    height: 48px;
  }
  .header-text h1 {
    font-size: 1.16em;
  }
  .header-text h2 {
    font-size: .97em;
  }
}


nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  background: #0A408A;
  padding: 12px 0 9px 0;
}
nav a {
  color: #fff;
  text-decoration: none;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 1.1em;
  border-radius: 8px 8px 0 0;
  transition: background 0.3s;
}
nav a.active, nav a:hover {
  background: #FF8300;
}
main {
  max-width: 1000px;
  margin: 35px auto;
  padding: 40px 6%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(10,70,151,0.07);
  line-height: 1.8;
  animation: fadeinUp 0.7s;
}
@keyframes fadeinUp {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}
.section-divider {
  height: 6px;
  background: linear-gradient(90deg, #0A4797 0%, #FF8300 100%);
  margin: 60px 0;
  border: none;
  border-radius: 3px;
}
.main-img {
  width: 100%;
  max-width: 650px;
  display: block;
  margin: 34px auto 38px auto;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(10,70,151,0.11);
}
h3 {
  color: #0A4797;
  text-align: center;
  margin-top: 30px;
  font-size: 2em;
}
ul {
  list-style-type: disc;
  margin-left: 30px;
  font-size: 1.1em;
}

/* Testimonials Home Only */
.testimonials {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.testimonial {
  background: #FFF4E5;
  padding: 16px 10px 10px 10px;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
  max-width: 210px;
  min-width: 150px;
  text-align: center;
  font-style: italic;
  border: 2px solid #FFD29A;
  margin-bottom: 12px;
  transition: box-shadow 0.3s;
  font-size: 0.98em;
}
.testimonial img {
  width: 55px;
  height: 55px;
  margin-bottom: 8px;
}
.testimonial .name {
  font-size: 0.98em;
  margin: 7px 0 3px 0;
}

.testimonial:hover {
  box-shadow: 0 9px 32px rgba(252,131,0,0.10);
}
.testimonial img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #FF8300;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(10,70,151,0.18);
}
.testimonial .name {
  font-weight: 700;
  color: #0A4797;
  margin: 10px 0 4px 0;
  font-style: normal;
  font-size: 1.09em;
}
.testimonial .desc {
  font-size: 1.05em;
}

/* Contact Form */
.contact-form {
  margin-top: 44px;
  background: #F8EBDB;
  padding: 35px 18px 25px 18px;
  border-radius: 13px;
  box-shadow: 0 1px 10px rgba(250, 150, 50, 0.06);
}
.contact-form h3 {
  text-align: center;
  color: #0A4797;
  margin-bottom: 18px;
}
.contact-form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}
.contact-form input, .contact-form textarea {
  width: 99%;
  padding: 12px;
  margin-top: 7px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  font-family: inherit;
}
.contact-form button {
  background-color: #0A4797;
  color: #fff;
  padding: 14px 30px;
  margin: 24px auto 0 auto;
  border: none;
  border-radius: 7px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background 0.3s;
  display: block;
}
.contact-form button:hover {
  background-color: #FF8300;
}

footer {
  background: #0A4797;
  color: #fff;
  text-align: center;
  padding: 44px 24px;
  font-size: 1.2em;
  margin-top: 70px;
  border-top: 6px solid #FF8300;
}
footer p {
  margin: 8px 0;
}

@media (max-width: 950px) {
  main { padding: 28px 3%; }
  .testimonials { gap: 20px; }
}
@media (max-width: 700px) {
  .header-logo { width: 55px; height: 55px; }
  main {
    padding: 18px 2%;
    margin: 13px auto;
  }
  .testimonials { flex-direction: column; }
  nav { flex-direction: column; gap: 0; }
}
