* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  background-color: #f5f5f5;
}

.text-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.text-content h2 {
  margin-bottom: 15px;
  color: #333;
}

.text-content p,
.text-content ul {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #444;
}

.text-content .green {
  color: green;
  font-weight: bold;
}

.text-content ul {
  list-style-type: decimal;
  padding-left: 20px;
}

.image-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.Book-Solar {
  text-align: center;
  width: 100%;
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: green;
  color: white;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.Book-Solar:hover {
  background-color: darkgreen;
  transition: 0.3s ease-in-out;
}
.Book-Solar,
a {
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  font-size: 1rem;
  text-decoration: none;
  color: white;
}

@media (max-width: 768px) {
 
  .container {
    flex-direction: column;
  }
  .text-content h2 {
    padding-top: 25px;
  }

  .text-content,
  .image-content {
    padding: 10px;
  }
}
