body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  width: 90%;
  margin: auto;
  overflow: hidden;
}

header {
  background: #222;
  color: #fff;
  padding: 20px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-title {
  display: flex;
  align-items: center;
}

.logo-title h1 {
  margin-left: 10px;
  font-size: 28px;
}

.logo {
  width: 50px;
  height: auto;
}

header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header ul li {
  display: inline;
  margin-left: 20px;
}

header ul li a {
  color: #fff;
  text-decoration: none;
}

.hero {
  background: #0099cc;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.hero .btn {
  display: inline-block;
  margin-top: 20px;
  background: #fff;
  color: #0099cc;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.about,
.services {
  padding: 40px 0;
  background: #fff;
}

.services ul {
  list-style-type: square;
  padding-left: 20px;
}

footer {
  background: #222;
  color: #fff;
  padding: 30px 0;
  font-size: 14px;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-left,
.footer-right {
  width: 48%;
}

.footer-left p,
.footer-right p {
  margin: 5px 0;
}

.footer-left a,
.footer-right a {
  color: #0099cc;
  text-decoration: none;
  font-weight: bold;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
}

@media (max-width: 768px) {
  .footer-left,
  .footer-right {
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .footer-right {
    justify-content: center;
    align-items: center;
  }
}
