/* Basic styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
}

header {
  background-color: #0041c2;
  color: white;
  text-align: center;
  padding: 20px 0;
}

header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

header img.logo {
  width: 120px;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

.hero {
  background-color: #0041c2;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.hero .cta-button {
  background-color: #ff9800;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  border-radius: 5px;
}

section {
  padding: 40px 20px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-item {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-post {
  background-color: white;
  padding: 20px;
  margin: 10px 0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

button:disabled {
  background-color: #ccc;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.linkedin-link {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
  header .header-content {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }
}
