* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #000000;
  border-radius: 8px;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

nav ul li {
  list-style: none;
  margin-right: 15px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
  position: relative;
  align-self: center;
}

nav ul li a:hover {
  color: #80bdf9;
}

main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 40px auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.text-content {
  flex: 1;
  padding-right: 20px;
}

.text-content h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #000000;
}

.text-content h3 {
  font-size: 1.5rem;
  margin-top: 15px;
  color: #000000;
}

.text-content p,
.text-content ul {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.text-content ul {
  padding-left: 20px;
}

.text-content ul li {
  margin-bottom: 5px;
}

.text-content a {
  color: #007bff;
  text-decoration: none;
}

.text-content a:hover {
  text-decoration: underline;
}

.image-container {
  flex: 0.4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #000000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  main {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .text-content {
    padding-right: 0;
  }

  .image-container {
    margin-top: 20px;
  }
}
