* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #f0f0f0;
  font-family: Georgia, serif;
  line-height: 1.6;
  color: #333;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  min-height: 100vh;
}
.header {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.8em;
  font-weight: 400;
  letter-spacing: 3px;
}
.header .tagline {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1em;
  font-weight: 200;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}
.content {
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.profile-image {
  flex-shrink: 0;
  width: 160px;
  border: 3px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}
.profile-image img {
  width: 100%;
  height: auto;
}
.text-content {
  flex: 1;
}
.text-content p {
  margin-bottom: 20px;
  font-size: 16px;
  text-align: justify;
}
.links {
  margin-top: 5px;
}
.links a {
  color: #3b82f6;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}
.links a:hover {
  text-decoration: underline;
}
.info-box {
  background-color: #1e3a8a;
  color: white;
  padding: 20px;
  margin: 10px 0 10px 0;
  font-size: 16px;
}
.footer {
  background-color: #1e3a8a;
  color: white;
  text-align: center;
  padding: 14px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  margin-top: auto;
}
.footer-spacer {
  background-color: white;
  height: 5px;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .header h1 {
    font-size: 2.2em;
    letter-spacing: 2px;
  }
  .header .tagline {
    font-size: 1em;
    letter-spacing: 2px;
  }
  .content {
    flex-direction: column;
    padding: 20px;
  }
  .profile-image {
    width: 120px;
    height: 150px;
    align-self: center;
    margin-top: 20px;
  }
}
