body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
}

.container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.box {
  width: 45%;
  border: 2px solid #333;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.box:hover {
  transform: translateY(-5px);
}

h1 {
  color: #333;
  font-family: "Arial", sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
}

p {
  color: #666;
  font-family: "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

a {
  color: #337ab7;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #23527c;
}
