body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f7fa;
    color: #333;
  }
  
  .layout {
    display: flex;
    min-height: 100vh;
  }
  
  .profile-card {
    width: 280px;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 16px;
    margin: 20px;
  }
  
  .avatar {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
  }
  
  .top-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    background: #C75C6F;
    padding: 1rem;
    border-radius: 12px;
  }
  
  .top-nav a {
    color: white;
    text-decoration: none;
  }
  
  .main-content {
    flex-grow: 1;
    padding: 2rem;
    max-width: 800px; /* Add a max width for better control */
  }
  
  p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

h1 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #C75C6F;
    font-weight: 700;
    position: relative;
}

h1::after {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    margin-top: 6px;
    border-radius: 4px;
    background: #ffe8ef;
}

h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.25rem;
    color: #333;
}

h3 {
    font-size: 0.95rem;
    font-weight: 400;
    color: #777;
    margin-bottom: 0.75rem;
}
  
 