body {
  font-family: 'Arial', sans-serif;
  color: #ffffff;
  background-color: #000000; /* Assuming a dark theme from the image */
}

header {
  background: url('header-background.jpg') no-repeat center center/cover; /* Replace with actual path to the background image */
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.nav-links li {
  display: inline;
  margin-left: 20px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
}

.logo {
  font-size: 2rem;
  color: #00aaff; /* Assuming a blue logo from the image */
}

.hero {
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.social-proof {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 1.2rem;
}

.description {
  margin-top: 1rem;
}

.services {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
}

.service {
  text-align: center;
  max-width: 200px;
}

.content {
  text-align: center;
  max-width: 600px;
}

.service img {
  width: 100px; /* Assuming icon size */
  height: auto;
}

.service h2 {
  font-size: 1.25rem;
  margin-top: 1rem;
}

.service p {
  font-size: 1rem;
  margin-top: 0.5rem;
}

a {
    color: white; /* Sets the default color of the hyperlinks to white */
    
}

a:hover {
    color: #00FF00; /* Changes the color to green when the mouse hovers over the hyperlink */
	text-decoration: none; /* Optional: Removes the underline from hyperlinks */
}