* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
font-family: "Times New Roman", serif;  background-color: #ffffff;
  color: #111111;
}

.container {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.left-image {
  overflow: hidden;
}

.flower-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.content {
  padding: 60px 80px;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 40px;
  font-weight: 500;
}

.profile-area {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.profile-photo {
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: 0;
}

.text-block {
  max-width: 600px;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #111111;   
}

.text-block p + p {
  margin-top: 10px;
}

.back-link {
  display: inline-block;  
  margin-top: 20px;
  text-decoration: none;
  color: #000000;
}

a {
  color:#000000
}

ul{
  display: flex;
  list-style: none;
  gap: 10px;
}