<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Reset */
body, h1, h2, p, a {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* Body Styling */
body {
  background-color: #f7f7f7;
  color: #333;
  text-align: center;
}

/* Header Styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.role {
  color: #d4a017;
  font-size: 14px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  font-size: 18px;
  color: #333;
}

nav a:hover {
  text-decoration: underline;
}

/* Main Hero Section */
.hero {
  margin-top: 40px;
}

.profile-photo {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.hero h2 {
  font-size: 36px;
  margin: 20px 0;
}

.about-text {
  font-size: 16px;
  color: #555;
}

.buttons {
  margin-top: 20px;
}

.button {
  text-decoration: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 18px;
  display: inline-block;
  margin: 10px;
}

.button.yellow {
  background-color: #d4a017;
}

.button.red {
  background-color: #d14417;
}

/* Footer Styling */
footer {
  margin-top: 40px;
  font-size: 14px;
}

footer a {
  color: #555;
  text-decoration: none;
}
</pre></body></html>