<style>
    
nav {
        background-color: lightgray; /* Light gray background */
        padding: 15px; /* Optional: adds spacing inside nav */
        text-align: center; /* Optional: centers the links */
    }

    nav a {
        text-decoration: none;
        color: black;
        margin: 0 15px; /* Space between links */
        font-weight: bold;
    }

    nav a:hover {
        color: darkblue; /* Optional: hover effect */
    }

body {
      font-family: Arial, Helvetica, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #ADD8E6;
      color: #222;
    }

    /* Navigation */
    nav {
      display: flex;
      justify-content: center;
      gap: 50px;
      padding: 20px;
      font-weight: bold;
    }
    nav a {
      text-decoration: none;
      color: black;
    }

    /* Main container */
    .card {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: 1px solid #ccc;
      margin: 40px auto;
      padding: 30px;
      max-width: 900px;
      background: #f4efeb;
    }
/* Text content */
    .info {
      flex: 1;
    }
    .info h1 {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }
    .info p {
      font-size: 1.1rem;
      margin-bottom: 20px;
      line-height: 1.5;
    }
    .social {
      margin-top: 10px;
    }
    .social a {
      margin-right: 15px;
      text-decoration: none;
      font-size: 1.2rem;
      color: black;
    }

    /* Profile Image */
    .photo {
      flex: 1;
      text-align: right;
    }
    .photo img {
      max-width: 200px;
      border-radius: 5px;
}
</style>