body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f8f8f8;
}

header {
    background: #111;
    color: white;
    padding: 10px 190px 10px 10px;
}

.header-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.header-content {
    flex: 1;
}

.header-content h1 {
    font-size: 3rem;
    margin: 0;
}

.header-content p {
    font-size: 1.3rem;
    color: #ccc;
}

.profile-photo {
    width: 120px;
    border-radius: 10px;
    border: 3px solid white;
    box-shadow: 0 8px 20px rgba(0,0,0,.45);
    flex-shrink: 0;
    
    position: absolute;
    right: 10px;
}
nav {
  background: white;
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

nav a {
  margin: 0 15px;
  color: #111;
  text-decoration: none;
  font-weight: bold;
}

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

section {
  background: white;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

h2 {
  margin-top: 0;
  color: #111;
}

footer {
  text-align: center;
  padding: 30px;
  color: #666;
  font-size: 0.9rem;
}

.tagline {
  font-size: 1.3rem;
  font-weight: bold;
}