/* Base styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

/* Header and navigation */
header {
  background-color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

nav {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #0078D4;
  font-weight: bold;
}

.logo {
  width: 150px;
}

/* Hero section */
.hero {
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
  height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 20px 40px;
  text-align: center;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
}
.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0078D4;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.cta:hover {
  background-color: #005a9e;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* Service cards */
.service-card {
  background-color: #fff;
  padding: 20px;
  margin: 20px 0;
  border-left: 5px solid #0078D4;
}

/* Responsive layout */
@media (max-width: 768px) {
  .hero {
    height: 30vh;
  }

  .hero-overlay h1 {
    font-size: 1.4rem;
  }

  .hero-overlay p {
    font-size: 0.95rem;
  }

  .cta {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}

}
<footer role="contentinfo">
  <p>&copy; 2025 Talent Insight Partners. All rights reserved.</p>
  <p><a href="contact.html">Contact</a> | <a href="accessibility-inclusion.html">Accessibility</a></p>
</footer>








