* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0 4%;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.logo h3 a {
  text-decoration: none;
  color: #000;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  padding: 5px 10px;
}

nav ul li a:hover {
  background-color: #000;
  color: #fff;
  border-radius: 5px;
}

header {
  text-align: center;
  margin: 80px 0;
}

header h1 {
  font-size: 48px;
}

header h4 {
  font-size: 16px;
  color: gray;
  opacity: 0.6;
  margin-top: 10px;
}

section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.aside-left,
.aside-right,
article {
  flex: 1 1 300px;
  padding: 15px;
}

.aside-left h2,
.aside-right h2,
article h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

article div{
  margin-bottom: 25px;
}

.aside-left div p {
  margin: 5px 0;
}

.review {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 40px 10px;
  font-family: 'Comic Sans MS', cursive;
  border-top: 1px solid #ccc;
}

.review-title {
  width: 100%;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.review > div {
  flex: 1 1 280px;
  max-width: 300px;
  min-width: 250px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 20px;
  text-align: left;
}

.review > div p:first-child {
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
}

.review > div p:last-child {
  font-size: 13px;
  color: #ccc;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 30px 0;
  font-family: 'Comic Sans MS', cursive;
  font-size: 16px;
  border-top: 1px solid #ccc;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  nav ul li a {
    display: inline-block;
    width: 100%;
  }

  header {
    margin: 50px 0;
  }
}
