body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #333;
}

header {
  background-color: #ccc;
  text-align: center;
  padding: 20px 0;
}

header h1 {
  margin: 0;
  font-size: 36px;
  color: #333;
}

.container {
  flex-grow: 1;
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.content {
  display: flex;
  align-items: center;
}

.image {
  max-height: 300px;
  margin-right: 20px;
  margin-bottom: 20px;
  float: left;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text {
  flex-grow: 1;
}

h2 {
  color: #555;
  font-size: 24px;
}

p {
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 18px;
}

a {
  color: #07bb9c;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #055c9d;
}

footer {
  background-color: #ccc;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #fff;
  border-radius: 0 0 10px 10px;
  position: sticky;
}

footer p {
  margin: 0;
  color: #333;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup {
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  position: relative;
  width: 100%;
  max-width: 80%;
  text-align: center;
  overflow-y: scroll;
  max-height: 70vh;
}

.popup-content {
  padding: 10px;
}

.popup-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  header {
    padding: 10px 0;
  }

  header h1 {
    font-size: 24px;
  }

  .image {
    max-height: 150px;
  }

  p {
    font-size: 16px;
  }

  footer {
    padding: 10px 0;
  }

  .popup {
    max-width: 100%;
    padding: 20px 10px;
  }

  .popup-content {
    padding: 10px;
  }

  .popup-close-btn {
    font-size: 24px;
  }
}
