body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.main-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.content-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-around;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.text-content {
  max-width: 600px;
}

.profile-image {
  margin-top: 20px;
  width: 200px;
  height: auto;
  border-radius: 8px; /* Optional: adds a nice touch */
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9; /* Optional: subtle footer background */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .profile-image {
    margin-top: 0;
    width: 150px; /* Slightly smaller on mobile */
  }

  .text-content {
    width: 100%;
  }
}
