/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #f4f4f4;
}

header .logo {
  font-size: 24px;
  font-weight: bold;
}

header nav ul {
  display: flex;
  list-style: none;
}

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

.cta {
  background-color: #3498db;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cta:hover {
  background-color: #2980b9;
}

.hero {
  background: url("https://via.placeholder.com/1200x400") no-repeat center
    center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.about,
.services,
.projects,
.contact {
  padding: 50px 20px;
  text-align: center;
}

.service-cards,
.project-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.card,
.project-item {
  background-color: #f4f4f4;
  padding: 20px;
  margin: 20px;
  flex-basis: 30%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background-color: #3498db;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
